Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
email sleep to 3s
Browse files Browse the repository at this point in the history
  • Loading branch information
dreske committed Mar 13, 2023
1 parent f45981f commit 1f873f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void start() {
long stopTimestamp = System.currentTimeMillis();
// Hacky, but totally ok for now
try {
Thread.sleep(Math.max(0, 2000 - (stopTimestamp - startTimestamp)));
Thread.sleep(Math.max(0, 3000 - (stopTimestamp - startTimestamp)));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 1f873f0

Please sign in to comment.