We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1464c7 commit c9ca5b7Copy full SHA for c9ca5b7
spring-boot-admin-server/src/test/java/de/codecentric/boot/admin/server/services/IntervalCheckTest.java
@@ -229,7 +229,7 @@ void should_not_lose_checks_under_backpressure_latest() {
229
slowCheck.start();
230
231
try {
232
- await().atMost(Duration.ofSeconds(2)).until(() -> checkTimes.size() >= 500);
+ await().atMost(Duration.ofSeconds(5)).until(() -> checkTimes.size() >= 500);
233
// With onBackpressureLatest, we should process more checks without drops
234
instanceIds.forEach((InstanceId instanceId) -> assertThat(checkTimesPerInstance.get(instanceId.getValue()))
235
.hasSizeGreaterThanOrEqualTo(10));
0 commit comments