Skip to content

Commit

Permalink
Upgrade to SDK 2.17.238 and make it actually work
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jul 25, 2022
1 parent 1890807 commit d8534f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ void runtimeInitialize(BuildProducer<RuntimeInitializedClassBuildItem> producer)
// FullJitterBackoffStrategy uses j.u.Ramdom, so needs to be runtime-initialized
producer.produce(
new RuntimeInitializedClassBuildItem("software.amazon.awssdk.core.retry.backoff.FullJitterBackoffStrategy"));
// CachedSupplier uses j.u.Ramdom, so needs to be runtime-initialized
producer.produce(
new RuntimeInitializedClassBuildItem("software.amazon.awssdk.utils.cache.CachedSupplier"));
}

@BuildStep
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.version>2.11.0.Final</quarkus.version>

<awssdk.version>2.17.220</awssdk.version>
<awssdk.version>2.17.238</awssdk.version>
</properties>
<build>
<pluginManagement>
Expand Down

0 comments on commit d8534f2

Please sign in to comment.