From d04981969fff56c77068cb4737f80deb7a41fd87 Mon Sep 17 00:00:00 2001 From: Jimmy Kiselak Date: Wed, 25 Nov 2015 11:16:27 -0500 Subject: [PATCH] increase the time limit for waiting for lbrycrdd to start up --- lbrynet/core/LBRYcrdWallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/core/LBRYcrdWallet.py b/lbrynet/core/LBRYcrdWallet.py index fc45f18d2..476457391 100644 --- a/lbrynet/core/LBRYcrdWallet.py +++ b/lbrynet/core/LBRYcrdWallet.py @@ -384,7 +384,7 @@ class LBRYcrdWallet(object): except (socket.error, JSONRPCException): tries += 1 log.warning("Failed to connect to lbrycrdd.") - if tries < 5: + if tries < 6: time.sleep(2 ** tries) log.warning("Trying again in %d seconds", 2 ** tries) else: