mirror of
https://github.com/docker/docs.git
synced 2026-04-12 14:25:46 +07:00
Removed mute for start method.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user