From bc8d57f15d88cc33299a256f299079452a53105b Mon Sep 17 00:00:00 2001 From: Roberto Cortez Date: Wed, 28 Feb 2024 14:13:28 +0000 Subject: [PATCH] Update SmallRye Config to 3.6.0 --- bom/application/pom.xml | 2 +- .../RestClientFallbackConfigSourceInterceptorTest.java | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/bom/application/pom.xml b/bom/application/pom.xml index 824378bef3048..4a8b0d1efb2c9 100644 --- a/bom/application/pom.xml +++ b/bom/application/pom.xml @@ -51,7 +51,7 @@ 2.0 3.1.1 2.3.0 - 3.5.4 + 3.6.0 4.1.0 4.0.0 3.10.0 diff --git a/extensions/resteasy-classic/rest-client-config/runtime/src/test/java/io/quarkus/restclient/config/RestClientFallbackConfigSourceInterceptorTest.java b/extensions/resteasy-classic/rest-client-config/runtime/src/test/java/io/quarkus/restclient/config/RestClientFallbackConfigSourceInterceptorTest.java index 29945375fcf76..b33e5119c92a7 100644 --- a/extensions/resteasy-classic/rest-client-config/runtime/src/test/java/io/quarkus/restclient/config/RestClientFallbackConfigSourceInterceptorTest.java +++ b/extensions/resteasy-classic/rest-client-config/runtime/src/test/java/io/quarkus/restclient/config/RestClientFallbackConfigSourceInterceptorTest.java @@ -192,14 +192,13 @@ public ConfigValue proceed(String name) { } @Override - public Iterator iterateNames() { - return names.iterator(); + public ConfigValue restart(String name) { + return proceed(name); } @Override - public Iterator iterateValues() { - return null; + public Iterator iterateNames() { + return names.iterator(); } } - }