Skip to content

Commit

Permalink
Increase retry period to every 30 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheikah45 committed Aug 31, 2023
1 parent 50df095 commit 8da6989
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public static class Irc {
public static class Server {
private String host;
private int port;
private int retryDelaySeconds = 5;
private int retryAttempts = 60;
private int retryDelaySeconds = 30;
private int retryAttempts = 10;
}

@Data
Expand Down

0 comments on commit 8da6989

Please sign in to comment.