Extend timeout to 5 minutes
This commit is contained in:
parent
1c896a4243
commit
458ff88602
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ lbry.connect = function(callback)
|
|||
lbry.isConnected = true;
|
||||
callback(true);
|
||||
} else {
|
||||
if (tryNum <= 50) { // Move # of tries into constant or config option
|
||||
if (tryNum <= 600) { // Move # of tries into constant or config option
|
||||
setTimeout(function () {
|
||||
checkDaemonRunning(tryNum + 1);
|
||||
}, 500);
|
||||
|
|
Loading…
Reference in a new issue