We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a6c68 commit 8234954Copy full SHA for 8234954
pyiceberg/io/pyarrow.py
@@ -493,6 +493,9 @@ def _initialize_oss_fs(self) -> FileSystem:
493
client_kwargs["session_token"] = session_token
494
if region := get(S3_REGION, AWS_REGION):
495
client_kwargs["region"] = region
496
+ _ = get(
497
+ S3_RESOLVE_REGION
498
+ ) # this feature is only available for S3. Use `get` here so it does not get passed down to the S3FileSystem constructor
499
if force_virtual_addressing := get(S3_FORCE_VIRTUAL_ADDRESSING, "s3.force_virtual_addressing"):
500
client_kwargs["force_virtual_addressing"] = self._convert_str_to_bool(force_virtual_addressing)
501
else:
0 commit comments