Skip to content

Commit

Permalink
Fix restart strategy in e2e test (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayehwhyehentee authored Nov 4, 2024
1 parent fbb0b4d commit 089cdf2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ public class BigQueryIntegrationTest {
private static final Integer MAX_OUT_OF_ORDER = 10;
private static final Integer MAX_IDLENESS = 20;
private static final RestartStrategyConfiguration RESTART_STRATEGY =
RestartStrategies.fixedDelayRestart(5, Time.seconds(10L));
RestartStrategies.exponentialDelayRestart(
Time.seconds(5), Time.minutes(10), 2.0, Time.hours(2), 0);

public static void main(String[] args) throws Exception {
// parse input arguments
Expand Down

0 comments on commit 089cdf2

Please sign in to comment.