Skip to content

Commit 938f308

Browse files
authored
Merge branch 'master' into load-eval
2 parents 38ebdc2 + 906ab59 commit 938f308

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

avaje-aws-appconfig/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212

1313
<groupId>io.avaje</groupId>
1414
<artifactId>avaje-aws-appconfig</artifactId>
15-
<version>1.3</version>
15+
<version>1.4</version>
1616

1717
<properties>
1818
<surefire.useModulePath>false</surefire.useModulePath>
19+
<project.build.outputTimestamp>2024-10-25T04:21:12Z</project.build.outputTimestamp>
1920
</properties>
2021

2122
<dependencies>
@@ -35,7 +36,7 @@
3536
<dependency>
3637
<groupId>io.avaje</groupId>
3738
<artifactId>avaje-spi-service</artifactId>
38-
<version>2.12</version>
39+
<version>2.13</version>
3940
<optional>true</optional>
4041
</dependency>
4142

avaje-aws-appconfig/src/main/java/io/avaje/config/appconfig/AppConfigPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void load(Configuration configuration) {
4040
loader = new Loader(configuration);
4141
int attempts = loader.initialLoad();
4242
if (attempts > 1){
43-
log.log(INFO, "AwsAppConfig loaded after {} attempts", attempts + 1);
43+
log.log(INFO, "AwsAppConfig loaded after {0} attempts", attempts + 1);
4444
}
4545
}
4646

@@ -105,7 +105,7 @@ int initialLoad() {
105105
return i;
106106
} catch (AppConfigFetcher.FetchException e) {
107107
lastAttempt = e;
108-
log.log(INFO, "retrying, load attempt {} got {}", i, e.getMessage());
108+
log.log(INFO, "retrying, load attempt {0} got {1}", i, e.getMessage());
109109
LockSupport.parkNanos(250_000_000); // 250 millis
110110
}
111111
}

avaje-config-toml/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
<properties>
2222
<surefire.useModulePath>false</surefire.useModulePath>
23+
<project.build.outputTimestamp>2024-10-25T04:21:12Z</project.build.outputTimestamp>
2324
</properties>
2425

2526
<dependencies>

avaje-config/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<snakeyaml.version>2.4</snakeyaml.version>
2323
<nexus.staging.autoReleaseAfterClose>true</nexus.staging.autoReleaseAfterClose>
2424
<surefire.useModulePath>false</surefire.useModulePath>
25+
<project.build.outputTimestamp>2024-10-25T04:21:12Z</project.build.outputTimestamp>
2526
</properties>
2627

2728
<dependencies>
@@ -35,7 +36,7 @@
3536
<dependency>
3637
<groupId>io.avaje</groupId>
3738
<artifactId>avaje-spi-service</artifactId>
38-
<version>2.12</version>
39+
<version>2.13</version>
3940
<optional>true</optional>
4041
</dependency>
4142

avaje-dynamic-logback/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
<properties>
2020
<surefire.useModulePath>false</surefire.useModulePath>
21+
<project.build.outputTimestamp>2024-10-25T04:21:12Z</project.build.outputTimestamp>
2122
</properties>
2223

2324
<dependencies>
@@ -31,7 +32,7 @@
3132
<dependency>
3233
<groupId>io.avaje</groupId>
3334
<artifactId>avaje-spi-service</artifactId>
34-
<version>2.12</version>
35+
<version>2.13</version>
3536
<optional>true</optional>
3637
</dependency>
3738

0 commit comments

Comments
 (0)