Skip to content

Commit

Permalink
Increase timeout in ScassandraCluster
Browse files Browse the repository at this point in the history
On my local system some Scassandra nodes sometimes take a long time
to shut down and the previous 10 second value was insufficient.
  • Loading branch information
avelanarius committed Jul 7, 2023
1 parent 376f032 commit bfbfda0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public void stop(Cluster cluster, int node) {
} catch (Exception e) {
logger.error("Could not stop node " + scassandra, e);
}
assertThat(cluster).host(node).goesDownWithin(10, TimeUnit.SECONDS);
assertThat(cluster).host(node).goesDownWithin(60, TimeUnit.SECONDS);
}

/**
Expand Down

0 comments on commit bfbfda0

Please sign in to comment.