nastra commented on code in PR #11349: URL: https://github.com/apache/iceberg/pull/11349#discussion_r1806186638
########## aws/src/test/java/org/apache/iceberg/aws/s3/signer/TestS3RestSigner.java: ########## @@ -71,11 +73,10 @@ public class TestS3RestSigner { private static final Region REGION = Region.US_WEST_2; private static final String BUCKET = "iceberg-s3-signer-test"; + private static final MinIOContainer MINIO_CONTAINER = MinioHelper.createContainer(); static final AwsCredentialsProvider CREDENTIALS_PROVIDER = StaticCredentialsProvider.create( - AwsBasicCredentials.create("accessKeyId", "secretAccessKey")); - private static final MinioContainer MINIO_CONTAINER = - new MinioContainer(CREDENTIALS_PROVIDER.resolveCredentials()); + AwsBasicCredentials.create(MINIO_CONTAINER.getUserName(), MINIO_CONTAINER.getPassword())); Review Comment: The old `MinioContainer` was setting multiple env vars (MINIO_ACCESS_KEY / MINIO_SECRET_KEY) for this and also configured virtual-host-style addressing, which we should continue to do -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org