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;
|
lbry.isConnected = true;
|
||||||
callback(true);
|
callback(true);
|
||||||
} else {
|
} 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 () {
|
setTimeout(function () {
|
||||||
checkDaemonRunning(tryNum + 1);
|
checkDaemonRunning(tryNum + 1);
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
Loading…
Add table
Reference in a new issue