Skip to content

Commit 1160951

Browse files
committed
increase default polling interval for check_execution_conversion_state task
1 parent c15bc4f commit 1160951

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/coordinator/tasks/check_execution_conversion_state/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Default settings for the `check_execution_conversion_state` task:
2828
- name: check_execution_conversion_state
2929
config:
3030
clientPattern: ""
31-
pollInterval: 5s
31+
pollInterval: 10s
3232
expectStarted: false
3333
expectFinished: false
3434
failOnUnexpected: false

pkg/coordinator/tasks/check_execution_conversion_state/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type Config struct {
1616

1717
func DefaultConfig() Config {
1818
return Config{
19-
PollInterval: human.Duration{Duration: 5 * time.Second},
19+
PollInterval: human.Duration{Duration: 10 * time.Second},
2020
}
2121
}
2222

0 commit comments

Comments
 (0)