Skip to content

Commit

Permalink
Bumping versions
Browse files Browse the repository at this point in the history
  • Loading branch information
spring-builds committed Jan 19, 2025
1 parent 0ac5f2f commit af5166b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@
<surefire-reports-directory>surefire-reports</surefire-reports-directory>
<failsafe-reports-directory>failsafe-reports</failsafe-reports-directory>
<!-- Dependency Versions -->
<spring-cloud-commons.version>4.1.5</spring-cloud-commons.version>
<spring-cloud-commons.version>4.1.6-SNAPSHOT</spring-cloud-commons.version>
<spring-cloud-config.version>4.1.6-SNAPSHOT</spring-cloud-config.version>
<spring-cloud-bus.version>4.1.3</spring-cloud-bus.version>
<spring-cloud-contract.version>4.1.5</spring-cloud-contract.version>
<spring-cloud-bus.version>4.1.4-SNAPSHOT</spring-cloud-bus.version>
<spring-cloud-contract.version>4.1.6-SNAPSHOT</spring-cloud-contract.version>

<maven-checkstyle-plugin.failsOnError>true</maven-checkstyle-plugin.failsOnError>
<maven-checkstyle-plugin.failsOnViolation>true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ void test() {
client.configMaps().inNamespace("default").resource(configMap).createOrReplace();

System.out.println("Waiting for reload change to be observed");
Commons.waitForLogStatement("Detected change in config maps/secrets, reload will be triggered", K3S, IMAGE_NAME);
Commons.waitForLogStatement("Detected change in config maps/secrets, reload will be triggered", K3S,
IMAGE_NAME);
System.out.println("reload change observed");

await().atMost(Duration.ofSeconds(120))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ void test() {
configMap.setData(Map.of(Constants.APPLICATION_PROPERTIES, "from.properties.key=as-mount-changed"));
client.configMaps().inNamespace("default").resource(configMap).createOrReplace();

Commons.waitForLogStatement("Detected change in config maps/secrets, reload will be triggered", K3S, IMAGE_NAME);
Commons.waitForLogStatement("Detected change in config maps/secrets, reload will be triggered", K3S,
IMAGE_NAME);

await().atMost(Duration.ofSeconds(120))
.pollInterval(Duration.ofSeconds(1))
Expand Down

0 comments on commit af5166b

Please sign in to comment.