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 2e5926b commit 7e4d590Copy full SHA for 7e4d590
pyiceberg/io/pyarrow.py
@@ -648,8 +648,8 @@ def _initialize_gcs_fs(self) -> FileSystem:
648
if (scheme := get("gcs.scheme")) and "scheme" not in client_kwargs: # GCS_SERVICE_HOST takes precedence
649
client_kwargs["scheme"] = scheme
650
if (
651
- (endpoint_override := get("gcs.endpoint_override")) and "endpoint_override" not in client_kwargs
652
- ): # GCS_SERVICE_HOST takes precedence
+ endpoint_override := get("gcs.endpoint_override")
+ ) and "endpoint_override" not in client_kwargs: # GCS_SERVICE_HOST takes precedence
653
client_kwargs["endpoint_override"] = endpoint_override
654
655
if project_id := get(GCS_PROJECT_ID, "gcs.project_id"):
0 commit comments