From 1dca7b92cf2b04a4a592eaa58711c461aa22bd20 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Sun, 31 May 2020 17:30:41 -0700 Subject: [PATCH] Remove exit condition for bond creation during re-learning of previously-known paths --- node/BondController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/BondController.cpp b/node/BondController.cpp index 4bc8d2261..cb4414f9f 100644 --- a/node/BondController.cpp +++ b/node/BondController.cpp @@ -107,7 +107,7 @@ SharedPtr BondController::createTransportTriggeredBond(const RuntimeEnviro } } else { - fprintf(stderr, "bond already exists for %llx, cannot re-register. exiting\n", identity); exit(0); // TODO: Remove + fprintf(stderr, "bond already exists for %llx.\n", identity); } if (bond) { _bonds[identity] = bond;