Skip to content

Commit

Permalink
Merge pull request #20607 from stuartwdouglas/intermittent-failure
Browse files Browse the repository at this point in the history
Fix intermittent failure
  • Loading branch information
aloubyansky authored Oct 8, 2021
2 parents 9d29e58 + 9c89098 commit 427235c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public abstract class AbstractTransactionLifecycleTest {
// Expect no warnings (in particular from Agroal)
.setLogRecordPredicate(record -> record.getLevel().intValue() >= Level.WARNING.intValue()
// Ignore these particular warnings: they are not relevant to this test.
&& !record.getMessage().contains("has been blocked for") //sometimes CI has a super slow moment and this triggers the blocked thread detector
&& !record.getMessage().contains("Using Java versions older than 11 to build Quarkus applications")
&& !record.getMessage().contains("Agroal does not support detecting if a connection is still usable")
&& !record.getMessage().contains("Netty DefaultChannelId initialization"))
Expand Down

0 comments on commit 427235c

Please sign in to comment.