We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f25a9 commit bc668b9Copy full SHA for bc668b9
test/jdk/jdk/jfr/jmx/streaming/TestRemoteDump.java
@@ -119,7 +119,7 @@ private static void testMultipleDumps() throws Exception {
119
var f1 = service.submit(f);
120
var f2 = service.submit(f);
121
var f3 = service.submit(f);
122
- if (!f1.get() && !f1.get() && !f3.get()) {
+ if (!f1.get() || !f2.get() || !f3.get()) {
123
throw new Exception("Failed to dump multiple recordings simultanously");
124
}
125
service.shutdown();
0 commit comments