Skip to content

Commit

Permalink
Fix wrong delay, increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
chimp1984 committed Jan 12, 2021
1 parent c66d3ad commit fe44cee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

@Slf4j
public class GetInventoryRequester implements MessageListener, ConnectionListener {
private final static int TIMEOUT_SEC = 90;
private final static int TIMEOUT_SEC = 180;

private final NetworkNode networkNode;
private final NodeAddress nodeAddress;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
@Slf4j
public class MailboxMessageService implements SetupListener, RequestDataManager.Listener, HashMapChangedListener,
PersistedDataHost {
private static final long REPUBLISH_DELAY_SEC = TimeUnit.SECONDS.toSeconds(2);
private static final long REPUBLISH_DELAY_SEC = TimeUnit.MINUTES.toSeconds(2);

private final EncryptionService encryptionService;
private final IgnoredMailboxService ignoredMailboxService;
Expand Down

0 comments on commit fe44cee

Please sign in to comment.