Skip to content

Commit

Permalink
Adjusts values.
Browse files Browse the repository at this point in the history
  • Loading branch information
a.stecher committed Oct 6, 2024
1 parent 043bb86 commit 8a2fb45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ func startWorkers(fileName string, nbWorkers int, env PreparedEnv) error {

l := getLogger()

const maxBackoff = 10 * time.Millisecond
const minBackoff = 1 * time.Second
const maxBackoff = 1 * time.Second
const minBackoff = 10 * time.Millisecond
const maxConsecutiveFailures = 60

for i := 0; i < nbWorkers; i++ {
Expand Down

0 comments on commit 8a2fb45

Please sign in to comment.