Skip to content

Commit

Permalink
Increase time between retries
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Dec 4, 2024
1 parent 9c24aca commit aba5f7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public void stop() throws IOException {

if (threadsActive && retryCount < maxRetries - 1) {
// Add a small delay between retries
Thread.sleep(1000);
Thread.sleep(3000);
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
Expand Down

0 comments on commit aba5f7d

Please sign in to comment.