Bumping versions

This commit is contained in:
buildmaster
2024-03-09 01:54:29 +00:00
parent 70bc54e019
commit c91f76d9ad

View File

@@ -249,13 +249,13 @@ class DiscoveryClientIT {
String clientHealth = client.method(HttpMethod.GET).retrieve().bodyToMono(String.class).retryWhen(retrySpec())
.block();
String serverHealth = server.method(HttpMethod.GET).retrieve().bodyToMono(String.class).retryWhen(retrySpec())
.block();
.block();
Assertions.assertThat(BASIC_JSON_TESTER.from(clientHealth))
.extractingJsonPathStringValue("$.components.discoveryComposite.status").isEqualTo("UP");
Assertions.assertThat(BASIC_JSON_TESTER.from(serverHealth))
.extractingJsonPathStringValue("$.components.kubernetes.status").isEqualTo("UP");
.extractingJsonPathStringValue("$.components.kubernetes.status").isEqualTo("UP");
}
private static void discoveryClient(Phase phase) {