Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump scala-libs to v32.41.0 #1124

Merged
merged 28 commits into from
Apr 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3c75aa8
Bump scala-libs to v32.41.0
weco-bot Apr 11, 2024
bf9ac59
Try localstack3.0.0 to fix sqs failure
agnesgaroux Apr 12, 2024
f35a18b
Don't set the version
agnesgaroux Apr 12, 2024
1cfe38e
Dependencies
agnesgaroux Apr 12, 2024
cc6068d
CRT not used as default anymore?
agnesgaroux Apr 12, 2024
6c1f455
ugh
agnesgaroux Apr 12, 2024
f34fe6d
unused import
agnesgaroux Apr 12, 2024
3858e1a
take???
agnesgaroux Apr 12, 2024
405435f
what's going on
agnesgaroux Apr 12, 2024
3e4e788
dang
agnesgaroux Apr 12, 2024
0f9f5e9
revert changes
agnesgaroux Apr 12, 2024
acbc622
use localstack 3.0.0 in common
agnesgaroux Apr 12, 2024
5a30ebb
try to set region as env var
agnesgaroux Apr 12, 2024
162dbd5
The provided DefaultS3AsyncClient is not an instance of S3CrtAsyncClient
agnesgaroux Apr 12, 2024
d28d3d5
use S3AsyncClient.crtCreate
agnesgaroux Apr 12, 2024
425a115
typo
agnesgaroux Apr 12, 2024
da363b8
rollback
agnesgaroux Apr 15, 2024
f2f22d2
use crt builder in Main
agnesgaroux Apr 15, 2024
a5a1f11
use crt builder in fixtures
agnesgaroux Apr 15, 2024
6542648
azurite doesn't like v3.0.0
agnesgaroux Apr 15, 2024
a2edc8d
formatting
agnesgaroux Apr 15, 2024
79b9787
set AWS_REGION for localstack SQS
agnesgaroux Apr 15, 2024
8b24356
ALLOW_NONSTANDARD_REGIONS in services using localstack/sqs
agnesgaroux Apr 15, 2024
9c6c8bd
formatting
agnesgaroux Apr 15, 2024
b453bbd
with S3CrtAsyncClient
agnesgaroux Apr 15, 2024
238369a
use S3AsyncClient.crtBuilder()
agnesgaroux Apr 15, 2024
9b5d2d7
use no_alpine sbt-wrapper image
agnesgaroux Apr 16, 2024
ce1ed2f
revert setting region
agnesgaroux Apr 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
with S3CrtAsyncClient
  • Loading branch information
agnesgaroux committed Apr 15, 2024
commit b453bbd487d58235c782d7040f1d64e8deab7c10
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package weco.storage.transfer.fixtures

import software.amazon.awssdk.services.s3.S3AsyncClient
//import software.amazon.awssdk.services.s3.S3AsyncClient
import software.amazon.awssdk.services.s3.internal.crt.S3CrtAsyncClient
import software.amazon.awssdk.transfer.s3.S3TransferManager
import weco.storage.fixtures.S3Fixtures

Expand All @@ -9,7 +10,7 @@ import java.net.URI
trait S3TransferManagerFixtures extends S3Fixtures {
def createS3TransferManagerWithEndpoint(endpoint: String): S3TransferManager = {
val s3AsyncClient =
S3AsyncClient.crtBuilder()
S3CrtAsyncClient.builder()
.credentialsProvider(s3Credentials)
.forcePathStyle(true)
.endpointOverride(new URI(endpoint))
Expand Down