From 92d0a7083c2c6f0545eff4f90ce4d9396e6d7824 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 16 Apr 2019 12:35:58 -0400 Subject: [PATCH] dht exploration implicitly makes a session so don't make more --- llarp/router/router.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/llarp/router/router.cpp b/llarp/router/router.cpp index 1686b556c..bb5a7d703 100644 --- a/llarp/router/router.cpp +++ b/llarp/router/router.cpp @@ -1170,9 +1170,6 @@ namespace llarp { for(const auto &rc : bootstrapRCList) { - if(HasPendingConnectJob(rc.pubkey)) - continue; - TryConnectAsync(rc, 4); dht()->impl->ExploreNetworkVia(dht::Key_t{rc.pubkey}); } }