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