diff --git a/src/stores/ContainerStore.js b/src/stores/ContainerStore.js index 2d4ec1b621..2761bcdc68 100644 --- a/src/stores/ContainerStore.js +++ b/src/stores/ContainerStore.js @@ -413,13 +413,10 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), { }, start: function (name, callback) { var container = docker.client().getContainer(name); - _muted[name] = true; container.start(err => { if (err && err.statusCode !== 304) { - _muted[name] = false; callback(err); } else { - _muted[name] = false; this.fetchContainer(name, callback); } });