Skip to content

Commit

Permalink
merge: #10504
Browse files Browse the repository at this point in the history
10504: test(backup-stores/s3): increase timeout r=oleschoenburg a=deepthidevaki

## Description

The timeout was too low, resulting in flaky tests. Set it to 1 minute. This might be too much for this test, but it is better than encountering flakiness again.

## Related issues

closes #10500 



Co-authored-by: Deepthi Devaki Akkoorath <deepthidevaki@gmail.com>
  • Loading branch information
zeebe-bors-camunda[bot] and deepthidevaki committed Sep 27, 2022
2 parents 1bddfc8 + 3756350 commit f915b56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ default void shouldNotOverwriteCompletedBackup(final Backup backup) {

// then
assertThat(saveAttempt)
.failsWithin(Duration.ofSeconds(1))
.failsWithin(Duration.ofMinutes(1))
.withThrowableOfType(ExecutionException.class);

final var status = getStore().getStatus(backup.id()).join();
Expand Down

0 comments on commit f915b56

Please sign in to comment.