Skip to content

Commit

Permalink
Increase timeout of retries
Browse files Browse the repository at this point in the history
  • Loading branch information
robskillington committed Jun 8, 2022
1 parent f993f32 commit 2504c0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dbnode/integration/graphite_find_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ local:
if attempt > 0 {
// Retry transient errors (should add a strict mode for this test
// avoid allowing transient errors too).
time.Sleep(time.Duration(attempt) * 500 * time.Millisecond)
seconds := 5 * attempt
time.Sleep(time.Duration(seconds) * time.Second)
}
result, failure, err = verifyFindQueries(node, level)
}
Expand Down

0 comments on commit 2504c0d

Please sign in to comment.