Skip to content

Commit

Permalink
Merge pull request #5029 from chimp1984/fix-num-seeds-to-connect-to
Browse files Browse the repository at this point in the history
Revert dev values for NUM_SEEDS_FOR_PRELIMINARY_REQUEST and NUM_ADDIT…
  • Loading branch information
sqrrm authored Dec 30, 2020
2 parents 0069581 + ae65da2 commit 0c1bc02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public class RequestDataManager implements MessageListener, ConnectionListener,
private static final long RETRY_DELAY_SEC = 10;
private static final long CLEANUP_TIMER = 120;
// How many seeds we request the PreliminaryGetDataRequest from
private static int NUM_SEEDS_FOR_PRELIMINARY_REQUEST = 16;
private static int NUM_SEEDS_FOR_PRELIMINARY_REQUEST = 2;
// how many seeds additional to the first responding PreliminaryGetDataRequest seed we request the GetUpdatedDataRequest from
private static int NUM_ADDITIONAL_SEEDS_FOR_UPDATE_REQUEST = 16;
private static int NUM_ADDITIONAL_SEEDS_FOR_UPDATE_REQUEST = 1;
private boolean isPreliminaryDataRequest = true;

///////////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 0c1bc02

Please sign in to comment.