We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
check_execution_conversion_state
1 parent c15bc4f commit 1160951Copy full SHA for 1160951
2 files changed
pkg/coordinator/tasks/check_execution_conversion_state/README.md
@@ -28,7 +28,7 @@ Default settings for the `check_execution_conversion_state` task:
28
- name: check_execution_conversion_state
29
config:
30
clientPattern: ""
31
- pollInterval: 5s
+ pollInterval: 10s
32
expectStarted: false
33
expectFinished: false
34
failOnUnexpected: false
pkg/coordinator/tasks/check_execution_conversion_state/config.go
@@ -16,7 +16,7 @@ type Config struct {
16
17
func DefaultConfig() Config {
18
return Config{
19
- PollInterval: human.Duration{Duration: 5 * time.Second},
+ PollInterval: human.Duration{Duration: 10 * time.Second},
20
}
21
22
0 commit comments