@@ -30,7 +30,7 @@ def iceberg_rest_s3_for_conftest(test_settings: TestSettings) -> IcebergRESTCata
3030 s3_protocol = test_settings .TEST_S3_PROTOCOL ,
3131 s3_bucket = test_settings .TEST_S3_BUCKET ,
3232 s3_region = test_settings .TEST_ICEBERG_S3_REGION ,
33- s3_path_style_access = test_settings .TEST_ICEBERG_S3_PATH_STYLE_ACCESS ,
33+ s3_bucket_style = test_settings .TEST_ICEBERG_S3_BUCKET_STYLE ,
3434 s3_access_key = test_settings .TEST_S3_ACCESS_KEY ,
3535 s3_secret_key = test_settings .TEST_S3_SECRET_KEY ,
3636 metastore_username = test_settings .TEST_ICEBERG_METASTORE_USERNAME ,
@@ -51,7 +51,7 @@ def iceberg_rest_s3_for_worker(test_settings: TestSettings) -> IcebergRESTCatalo
5151 s3_protocol = test_settings .TEST_S3_PROTOCOL ,
5252 s3_bucket = test_settings .TEST_S3_BUCKET ,
5353 s3_region = test_settings .TEST_ICEBERG_S3_REGION ,
54- s3_path_style_access = test_settings .TEST_ICEBERG_S3_PATH_STYLE_ACCESS ,
54+ s3_bucket_style = test_settings .TEST_ICEBERG_S3_BUCKET_STYLE ,
5555 s3_access_key = test_settings .TEST_S3_ACCESS_KEY ,
5656 s3_secret_key = test_settings .TEST_S3_SECRET_KEY ,
5757 metastore_username = test_settings .TEST_ICEBERG_METASTORE_USERNAME ,
@@ -87,7 +87,7 @@ def prepare_iceberg_rest_s3(
8787 port = iceberg .s3_port ,
8888 protocol = iceberg .s3_protocol ,
8989 bucket = iceberg .s3_bucket ,
90- path_style_access = iceberg .s3_path_style_access ,
90+ path_style_access = iceberg .s3_bucket_style == "path" ,
9191 region = iceberg .s3_region ,
9292 access_key = iceberg .s3_access_key ,
9393 secret_key = iceberg .s3_secret_key ,
@@ -134,7 +134,7 @@ async def iceberg_rest_s3_connection(
134134 s3_protocol = iceberg .s3_protocol ,
135135 s3_bucket = iceberg .s3_bucket ,
136136 s3_region = iceberg .s3_region ,
137- s3_path_style_access = iceberg .s3_path_style_access ,
137+ s3_bucket_style = iceberg .s3_bucket_style ,
138138 ),
139139 group_id = group .id ,
140140 )
0 commit comments