Commit ec8ae2f9 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '1.4.x' into 1.5.x

parents a215103b e60a2619
......@@ -255,7 +255,12 @@ public class SysVinitLaunchScriptIT {
return output.toString();
}
finally {
docker.removeContainerCmd(container).exec();
try {
docker.removeContainerCmd(container).exec();
}
catch (Exception ex) {
// Continue
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment