Skip to content

Commit ec8ae2f

Browse files
committed
Merge branch '1.4.x' into 1.5.x
2 parents a215103 + e60a261 commit ec8ae2f

File tree

1 file changed

+6
-1
lines changed
  • spring-boot-integration-tests/spring-boot-launch-script-tests/src/test/java/org/springframework/boot/launchscript

1 file changed

+6
-1
lines changed

spring-boot-integration-tests/spring-boot-launch-script-tests/src/test/java/org/springframework/boot/launchscript/SysVinitLaunchScriptIT.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,12 @@ public void onNext(Frame item) {
255255
return output.toString();
256256
}
257257
finally {
258-
docker.removeContainerCmd(container).exec();
258+
try {
259+
docker.removeContainerCmd(container).exec();
260+
}
261+
catch (Exception ex) {
262+
// Continue
263+
}
259264
}
260265
}
261266

0 commit comments

Comments
 (0)