This is an automated email from the ASF dual-hosted git repository.
amoghj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 85d22d70c6 AWS: Fix DefaultAwsClientFactory#S3FileIOEndpointOverride
test (#8643)
85d22d70c6 is described below
commit 85d22d70c6c8993fd5f7c12abb5dd537a31e5ade
Author: Amogh Jahagirdar <[email protected]>
AuthorDate: Mon Sep 25 13:33:17 2023 -0700
AWS: Fix DefaultAwsClientFactory#S3FileIOEndpointOverride test (#8643)
---
.../java/org/apache/iceberg/aws/TestDefaultAwsClientFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/aws/src/integration/java/org/apache/iceberg/aws/TestDefaultAwsClientFactory.java
b/aws/src/integration/java/org/apache/iceberg/aws/TestDefaultAwsClientFactory.java
index b69b24583f..60c06b1f08 100644
---
a/aws/src/integration/java/org/apache/iceberg/aws/TestDefaultAwsClientFactory.java
+++
b/aws/src/integration/java/org/apache/iceberg/aws/TestDefaultAwsClientFactory.java
@@ -55,7 +55,7 @@ public class TestDefaultAwsClientFactory {
AssertHelpers.assertThrowsCause(
"Should refuse connection to unknown endpoint",
SdkClientException.class,
- "Unable to execute HTTP request: unknown",
+ "Unable to execute HTTP request: bucket.unknown",
() ->
s3Client.getObject(GetObjectRequest.builder().bucket("bucket").key("key").build()));
}