Merge pull request #1092 from josepfo/fix/update-wallet-nodes-not-running

fix: update only if node is stopped
This commit is contained in:
Rafael Taranto 2022-02-10 13:07:56 +00:00 committed by GitHub
commit 3dadb9ad10
6 changed files with 6 additions and 7 deletions

View file

@ -29,8 +29,7 @@ function run () {
const cryptoPlugin = plugin(crypto)
const status = common.es(`sudo supervisorctl status ${crypto.code} | awk '{ print $2 }'`).trim()
if (status === 'RUNNING') cryptoPlugin.updateCore(common.getBinaries(crypto.cryptoCode), true)
if (status === 'STOPPED') cryptoPlugin.updateCore(common.getBinaries(crypto.cryptoCode), false)
cryptoPlugin.updateCore(common.getBinaries(crypto.cryptoCode), _.includes(status, ['RUNNING', 'STARTING']))
}, cryptos)
}