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 1a01b67 commit a1464c7Copy full SHA for a1464c7
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.ofMillis(1500)).until(() -> checkTimes.size() >= 500);
+ await().atMost(Duration.ofSeconds(2)).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