Do not allow failure to remove container to mask earlier failure
This commit is contained in:
parent
31ff7f1846
commit
e60a261952
|
|
@ -247,7 +247,12 @@ public class SysVinitLaunchScriptIT {
|
||||||
return output.toString();
|
return output.toString();
|
||||||
}
|
}
|
||||||
finally {
|
finally {
|
||||||
docker.removeContainerCmd(container).exec();
|
try {
|
||||||
|
docker.removeContainerCmd(container).exec();
|
||||||
|
}
|
||||||
|
catch (Exception ex) {
|
||||||
|
// Continue
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue