Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mcculls committed Jan 16, 2025
1 parent 609d960 commit b3ca0f3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,12 @@ public static int runOnSeparateJvm(
errorGobbler.start();

if (!waitFor(process, 30, TimeUnit.SECONDS)) {
System.out.println("======== APP TIMED OUT");
out.println("======== APP TIMED OUT");
ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean();
for (ThreadInfo info : threadMXBean.dumpAllThreads(true, true)) {
System.out.println(info);
out.println(info);
}
System.out.println("======== -------------");
out.println("======== -------------");
waitFor(process, 30, TimeUnit.SECONDS);
throw new TimeoutException();
}
Expand Down

0 comments on commit b3ca0f3

Please sign in to comment.