Skip to content

Commit

Permalink
increase default polling interval for `check_execution_conversion_sta…
Browse files Browse the repository at this point in the history
…te` task
  • Loading branch information
pk910 committed Mar 1, 2024
1 parent c15bc4f commit 1160951
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Default settings for the `check_execution_conversion_state` task:
- name: check_execution_conversion_state
config:
clientPattern: ""
pollInterval: 5s
pollInterval: 10s
expectStarted: false
expectFinished: false
failOnUnexpected: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Config struct {

func DefaultConfig() Config {
return Config{
PollInterval: human.Duration{Duration: 5 * time.Second},
PollInterval: human.Duration{Duration: 10 * time.Second},
}
}

Expand Down

0 comments on commit 1160951

Please sign in to comment.