File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
s3/src/main/scala/org/apache/pekko/stream/connectors/s3 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ object Dependencies {
26
26
val InfluxDBJavaVersion = " 2.23"
27
27
28
28
val AvroVersion = " 1.11.3"
29
- val AwsSdk2Version = " 2.25.21 "
29
+ val AwsSdk2Version = " 2.25.26 "
30
30
val AwsSdk2SqsVersion = " 2.20.162" // latest AwsSdk2Version causes us test issues with SQS
31
31
val AwsSpiPekkoHttpVersion = " 0.1.1"
32
32
val NettyVersion = " 4.1.108.Final"
Original file line number Diff line number Diff line change @@ -596,7 +596,7 @@ object S3Settings {
596
596
val aki = c.getString(" aws.credentials.access-key-id" )
597
597
val sak = c.getString(" aws.credentials.secret-access-key" )
598
598
val tokenPath = " aws.credentials.token"
599
- val creds = if (c.hasPath(tokenPath)) {
599
+ val creds : AwsCredentials = if (c.hasPath(tokenPath)) {
600
600
AwsSessionCredentials .create(aki, sak, c.getString(tokenPath))
601
601
} else {
602
602
AwsBasicCredentials .create(aki, sak)
You can’t perform that action at this time.
0 commit comments