Skip to content

Commit

Permalink
Make ClusterPipeliningTest#assertThreadsCount less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
sazzad16 committed Jun 20, 2023
1 parent c1454e6 commit 0dba977
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,6 @@ private static void assertThreadsCount() {
.filter(thread -> thread != null && thread.getName() != null
&& thread.getName().startsWith("pool-"))
.count();
MatcherAssert.assertThat(count, Matchers.lessThan(9));
MatcherAssert.assertThat(count, Matchers.lessThanOrEqualTo(20));
}
}

0 comments on commit 0dba977

Please sign in to comment.