Skip to content

Commit

Permalink
Fix testConcurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
jacodg committed Jan 2, 2024
1 parent e1419fe commit 7c70fdf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,9 @@ private void testConcurrency(boolean keepReportOpenWithMessageCapturer) throws T
while (testThreads[i].isAlive()) Thread.sleep(10);
}
ignoreWarningsInLog(listAppender, "New child thread '");
if (keepReportOpenWithMessageCapturer) {
ignoreWarningsInLog(listAppender, "Unknown thread 'Thread-");
}
ignoreWarningsInLog(listAppender, "Unknown thread 'Thread-");
ignoreWarningsInLog(listAppender,
"No report in progress for correlationId and checkpoint not a startpoint, ignored checkpoint (name: Thread-");
for (int i = 0; i < nrOfThreads; i++) {
if (testThreads[i].getThrowable() != null) {
throw new Exception(testThreads[i].getThrowable());
Expand Down

0 comments on commit 7c70fdf

Please sign in to comment.