Skip to content

feat: option to use bq connection without check #460

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

Merged
merged 10 commits into from
Mar 21, 2024
Prev Previous commit
Next Next commit
fix bad referencing
  • Loading branch information
shobsi committed Mar 20, 2024
commit 3da2f6b1d224bafc5119451d3646107d282ab62a
2 changes: 1 addition & 1 deletion bigframes/session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def resourcemanagerclient(self):
def bqconnectionmanager(self):
if not self._skip_bq_connection_check and not self._bq_connection_manager:
self._bq_connection_manager = bigframes.clients.BqConnectionManager(
self.session.bqconnectionclient, self.session.resourcemanagerclient
self.bqconnectionclient, self.resourcemanagerclient
)
return self._bq_connection_manager

Expand Down