From 96be7ab777627ac3fe95245a86cefb1939a3152a Mon Sep 17 00:00:00 2001 From: spring-builds Date: Thu, 12 Dec 2024 11:56:03 +0000 Subject: [PATCH] Bumping versions --- .../cloud/netflix/eureka/server/EurekaInstanceMonitorTests.java | 2 +- .../EurekaInstanceMonitorWithCustomTagsProviderTests.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorTests.java b/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorTests.java index 7d63a2e25..680e49eaf 100644 --- a/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorTests.java +++ b/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorTests.java @@ -160,7 +160,7 @@ class EurekaInstanceMonitorTests { private void assertEurekaInstance(Map meterRegistryCounts) { await().pollDelay(5, MILLISECONDS) - .atMost(10, SECONDS) + .atMost(10, SECONDS) .pollInterval(fibonacci()) .untilAsserted(() -> meterRegistryCounts.forEach((tags, count) -> assertThat((long) meterRegistry.get("eureka.server.instances").tags(tags).gauge().value()) diff --git a/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorWithCustomTagsProviderTests.java b/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorWithCustomTagsProviderTests.java index fac5c604c..5e43bff43 100644 --- a/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorWithCustomTagsProviderTests.java +++ b/spring-cloud-netflix-eureka-server/src/test/java/org/springframework/cloud/netflix/eureka/server/EurekaInstanceMonitorWithCustomTagsProviderTests.java @@ -93,7 +93,7 @@ class EurekaInstanceMonitorWithCustomTagsProviderTests { private void assertEurekaInstance(Map meterRegistryCounts) { await().pollDelay(5, MILLISECONDS) - .atMost(5, SECONDS) + .atMost(5, SECONDS) .pollInterval(fibonacci()) .untilAsserted(() -> meterRegistryCounts.forEach((tags, count) -> { SoftAssertions softAssertions = new SoftAssertions();