1
0
mirror of https://github.com/go-task/task.git synced 2025-10-08 23:02:02 +02:00

docs: Update Remote Taskfiles default values

* docs: Update Remote Taskfiles default values

This change updates the documentation for [Remote Taskfiles > Configuration](https://taskfile.dev/docs/experiments/remote-taskfiles#configuration) for `timeout` and `cache-expiry` to match the defaults in code.

* docs: Update `cache-expiry` default to 0s

* docs: Update executor.go comment

Fix doc comment to indicate that cache expiry default duration is 0.
This commit is contained in:
merusso
2025-09-23 07:10:20 -05:00
committed by GitHub
parent 979ad523ef
commit 0f9baf62a1
2 changed files with 3 additions and 3 deletions

View File

@@ -240,7 +240,7 @@ func (o *timeoutOption) ApplyToExecutor(e *Executor) {
}
// WithCacheExpiryDuration sets the duration after which the cache is considered
// expired. By default, the cache is considered expired after 24 hours.
// expired. By default, the cache is 0 (disabled).
func WithCacheExpiryDuration(duration time.Duration) ExecutorOption {
return &cacheExpiryDurationOption{duration: duration}
}

View File

@@ -330,7 +330,7 @@ remote:
#### `timeout`
- **Type**: `string`
- **Default**: Not specified
- **Default**: 10s
- **Pattern**: `^[0-9]+(ns|us|µs|ms|s|m|h)$`
- **Description**: Timeout duration for remote operations (e.g., '30s', '5m')
@@ -342,7 +342,7 @@ remote:
#### `cache-expiry`
- **Type**: `string`
- **Default**: Not specified
- **Default**: 0s (no cache)
- **Pattern**: `^[0-9]+(ns|us|µs|ms|s|m|h)$`
- **Description**: Cache expiry duration for remote Taskfiles (e.g., '1h', '24h')