Skip to content

Commit

Permalink
Merge pull request #39058 from radcortez/sr-config-3.6.0
Browse files Browse the repository at this point in the history
Update SmallRye Config to 3.6.0
  • Loading branch information
gastaldi authored Feb 28, 2024
2 parents 1f8a491 + bc8d57f commit c786322
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<microprofile-lra.version>2.0</microprofile-lra.version>
<microprofile-openapi.version>3.1.1</microprofile-openapi.version>
<smallrye-common.version>2.3.0</smallrye-common.version>
<smallrye-config.version>3.5.4</smallrye-config.version>
<smallrye-config.version>3.6.0</smallrye-config.version>
<smallrye-health.version>4.1.0</smallrye-health.version>
<smallrye-metrics.version>4.0.0</smallrye-metrics.version>
<smallrye-open-api.version>3.10.0</smallrye-open-api.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,13 @@ public ConfigValue proceed(String name) {
}

@Override
public Iterator<String> iterateNames() {
return names.iterator();
public ConfigValue restart(String name) {
return proceed(name);
}

@Override
public Iterator<ConfigValue> iterateValues() {
return null;
public Iterator<String> iterateNames() {
return names.iterator();
}
}

}

0 comments on commit c786322

Please sign in to comment.