Thanks, Danny.

This commit is contained in:
Chris Marsh 2017-11-17 08:40:01 -08:00
parent c5d3481c47
commit 6a963456ed

View file

@ -65,7 +65,7 @@ static MsgQueue<JoinRequest, JoinQueueSize> JoinAskQueue;
// We want to auto connect, and retry on failure, but not as fast as possible. This does expoential
// backoff from 0.5 seconds to 1 minute
static Backoff ReconnectTimeMs(500, 60 * 1000);
static auto NextConnect{std::chrono::system_clock::now()};
static auto NextConnect = std::chrono::system_clock::now();
static int Pid{0};
static int Nonce{1};