Increase retry time and retry count for failed seed nodes in monitor

This commit is contained in:
Manfred Karrer 2017-12-27 23:58:03 +01:00
parent 6c331b8fc7
commit 14d1db0e81
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -23,10 +23,10 @@ import java.util.concurrent.TimeUnit;
@Slf4j
public class MonitorRequestManager implements ConnectionListener {
private static final long RETRY_DELAY_SEC = 20;
private static final long RETRY_DELAY_SEC = 30;
private static final long CLEANUP_TIMER = 60;
private static final long REQUEST_PERIOD_MIN = 10;
private static final int MAX_RETRIES = 6;
private static final int MAX_RETRIES = 8;
///////////////////////////////////////////////////////////////////////////////////////////