Do not allow failure to remove container to mask earlier failure

pull/8060/merge
Andy Wilkinson 8 years ago
parent 31ff7f1846
commit e60a261952

@ -247,7 +247,12 @@ public class SysVinitLaunchScriptIT {
return output.toString();
}
finally {
docker.removeContainerCmd(container).exec();
try {
docker.removeContainerCmd(container).exec();
}
catch (Exception ex) {
// Continue
}
}
}

Loading…
Cancel
Save