mirror of https://github.com/embarklabs/embark.git
fix little oopsie in waterfall
This commit is contained in:
parent
b003675ee8
commit
8d9c192e91
|
@ -109,13 +109,14 @@ class Blockchain {
|
|||
|
||||
registerServiceCheck() {
|
||||
const self = this;
|
||||
const NO_NODE = 'noNode';
|
||||
|
||||
this.addCheck('Ethereum', function (cb) {
|
||||
async.waterfall([
|
||||
function checkNodeConnection(next) {
|
||||
self.assertNodeConnection(true, (err) => {
|
||||
if (err) {
|
||||
return next(null, {name: "No Blockchain node found", status: 'off'});
|
||||
return next(NO_NODE, {name: "No Blockchain node found", status: 'off'});
|
||||
}
|
||||
next();
|
||||
});
|
||||
|
@ -137,6 +138,9 @@ class Blockchain {
|
|||
});
|
||||
}
|
||||
], (err, statusObj) => {
|
||||
if (err === NO_NODE) {
|
||||
return cb(err);
|
||||
}
|
||||
if (err) {
|
||||
self.logger.error(err);
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue