Skip to content

Commit

Permalink
Ignore threads with "ducttape-" prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Nov 3, 2023
1 parent e31e499 commit a832e89
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ private static boolean shouldSkipThread(Thread thread) {
if (threadName.startsWith("testcontainers-wait-")) {
return true;
}
// org.rnorth.ducttape.timeouts.Timeouts.EXECUTOR_SERVICE thread pool, used by Testcontainers
if (threadName.startsWith("ducttape-")) {
return true;
}
}
Runnable target = extractRunnableTarget(thread);
if (target != null) {
Expand Down

0 comments on commit a832e89

Please sign in to comment.