mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Increase retry time and retry count for failed seed nodes in monitor
This commit is contained in:
parent
6c331b8fc7
commit
14d1db0e81
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Reference in a new issue