Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: augment universe_domain handling #1837

Merged
merged 15 commits into from
Mar 5, 2024
Prev Previous commit
var fix
  • Loading branch information
shollyman committed Mar 5, 2024
commit c1b8011fe90f42e829c1fc62f9acae6b1f38191f
2 changes: 1 addition & 1 deletion google/cloud/bigquery/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _get_client_universe(
universe = _DEFAULT_UNIVERSE
if hasattr(client_options, "universe_domain"):
options_universe = getattr(client_options, "universe_domain")
shollyman marked this conversation as resolved.
Show resolved Hide resolved
if options_universe is not None and len(env_universe) > 0:
if options_universe is not None and len(options_universe) > 0:
universe = options_universe
else:
env_universe = os.getenv(_UNIVERSE_DOMAIN_ENV)
Expand Down