Skip to content

Commit

Permalink
fix(executor): Update executor retry config for ExponentialBackoff. (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
anggao committed Oct 2, 2020
1 parent 2b12762 commit 1465033
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workflow/executor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ import (

// ExecutorRetry is a retry backoff settings for WorkflowExecutor
var ExecutorRetry = wait.Backoff{
Steps: 8,
Steps: 5,
Duration: 1 * time.Second,
Factor: 1.0,
Jitter: 0.1,
Factor: 1.6,
Jitter: 0.5,
}

const (
Expand Down

0 comments on commit 1465033

Please sign in to comment.