Skip to content

Commit

Permalink
Merge pull request #62 from VerusCoin/MichaelF-Dev
Browse files Browse the repository at this point in the history
Michael f dev
  • Loading branch information
michaeltout authored Sep 4, 2018
2 parents e05f6b6 + cc99112 commit 285b35f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion routes/shepherd/quitDaemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ module.exports = (shepherd) => {

shepherd.log(`trying to safely quit ${key}`);
execCliStopSafe();
setTimeout(() => {
execCliStopSafe();
}, 60000)
didDaemonQuitInterval[key] = setInterval(() => {
didDaemonQuit();
}, 100);
Expand All @@ -89,7 +92,7 @@ module.exports = (shepherd) => {
shepherd.log(`timeout while trying to safely quit ${key}, force quitting`);
execCliStopForce();
}
}, 60000)
}, 120000)
} else {
delete shepherd.coindInstanceRegistry[key];
}
Expand Down

0 comments on commit 285b35f

Please sign in to comment.