We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
BigQueryOptions.client_endpoints_override
1 parent f91756a commit 788f6e9Copy full SHA for 788f6e9
bigframes/_config/bigquery_options.py
@@ -91,7 +91,7 @@ def __init__(
91
skip_bq_connection_check: bool = False,
92
*,
93
ordering_mode: Literal["strict", "partial"] = "strict",
94
- client_endpoints_override: dict = {},
+ client_endpoints_override: Optional[dict] = None,
95
):
96
self._credentials = credentials
97
self._project = project
@@ -104,6 +104,10 @@ def __init__(
104
self._session_started = False
105
# Determines the ordering strictness for the session.
106
self._ordering_mode = _validate_ordering_mode(ordering_mode)
107
+
108
+ if client_endpoints_override is None:
109
+ client_endpoints_override = {}
110
111
self._client_endpoints_override = client_endpoints_override
112
113
@property
0 commit comments