Reduce NetworkClient reconnect attempts from 5 -> 3

This commit is contained in:
James Seibel
2023-07-25 22:10:01 -05:00
parent af5bb351e8
commit fa8f7b2a37
@@ -31,7 +31,7 @@ public class NetworkClient extends NetworkEventSource implements AutoCloseable
}
private static final int FAILURE_RECONNECT_DELAY_SEC = 5;
private static final int FAILURE_RECONNECT_ATTEMPTS = 5;
private static final int FAILURE_RECONNECT_ATTEMPTS = 3;
// TODO move to payload of some sort
private final InetSocketAddress address;