increase the time limit for waiting for lbrycrdd to start up
This commit is contained in:
parent
a148d4f446
commit
d04981969f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue