Skip to content

Commit

Permalink
change heartbeat interval
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Jan 14, 2024
1 parent 711c239 commit e877654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/opendota/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static void main(String[] args) throws Exception {
// Re-register ourselves
Timer timer = new Timer();
TimerTask task = new RegisterTask();
timer.schedule(task, 0, 10000);
timer.schedule(task, 0, 5000);
}

static class MyHandler implements HttpHandler {
Expand Down

0 comments on commit e877654

Please sign in to comment.