Signed-off-by: FrenchBen <me@frenchben.com>
This commit is contained in:
FrenchBen 2015-08-27 14:18:46 -04:00
Родитель a30f1cc185
Коммит bc78ab64ba
1 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -262,17 +262,17 @@ export default {
},
restart (name) {
let container = this.client.getContainer(name);
container.stop(error => {
if (error && error.statusCode !== 304) {
containerServerActions.error({name, error});
this.client.getContainer(name).stop(stopError => {
if (stopError && stopError.statusCode !== 304) {
containerServerActions.error({name, stopError});
return;
}
container.inspect((error, data) => {
if (error) {
containerServerActions.error({name, error});
this.client.getContainer(name).start(startError => {
if (startError && startError.statusCode !== 304) {
containerServerActions.error({name, startError});
return;
}
this.startContainer(name, data);
this.fetchContainer(name);
});
});
},