You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by ja...@apache.org on 2023/05/08 20:48:07 UTC

[iceberg] branch master updated: AWS: add missing line to assign param S3FileIOProperties inside constructor (#7559)

This is an automated email from the ASF dual-hosted git repository.

jackye 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 bbe7a64d1c AWS: add missing line to assign param S3FileIOProperties inside constructor (#7559)
bbe7a64d1c is described below

commit bbe7a64d1c6f5b8b680c74caa9880f9e83a8d754
Author: akshayakp97 <ap...@amazon.com>
AuthorDate: Mon May 8 13:48:02 2023 -0700

    AWS: add missing line to assign param S3FileIOProperties inside constructor (#7559)
---
 aws/src/main/java/org/apache/iceberg/aws/s3/S3FileIO.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/aws/src/main/java/org/apache/iceberg/aws/s3/S3FileIO.java b/aws/src/main/java/org/apache/iceberg/aws/s3/S3FileIO.java
index 1784cd975f..215aac09a5 100644
--- a/aws/src/main/java/org/apache/iceberg/aws/s3/S3FileIO.java
+++ b/aws/src/main/java/org/apache/iceberg/aws/s3/S3FileIO.java
@@ -120,6 +120,7 @@ public class S3FileIO
    */
   public S3FileIO(SerializableSupplier<S3Client> s3, S3FileIOProperties s3FileIOProperties) {
     this.s3 = s3;
+    this.s3FileIOProperties = s3FileIOProperties;
     this.createStack = Thread.currentThread().getStackTrace();
   }