We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14687a6 commit f0dd614Copy full SHA for f0dd614
core/src/main/java/org/testcontainers/utility/ResourceReaper.java
@@ -79,6 +79,15 @@ public static synchronized ResourceReaper instance() {
79
//noinspection deprecation
80
instance = new RyukResourceReaper();
81
} else {
82
+ String ryukDisabledMessage =
83
+ "\n" +
84
+ "********************************************************************************" +
85
86
+ "Ryuk has been disabled. This can cause unexpected behavior in your environment." +
87
88
+ "********************************************************************************";
89
+ LOGGER.warn(ryukDisabledMessage);
90
+
91
instance = new JVMHookResourceReaper();
92
}
93
0 commit comments