Skip to content

Commit 677f014

Browse files
authored
fix: chance default connection name in getting_started.ipnyb (#347)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [X ] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [X ] Ensure the tests and linter pass - [ X] Code coverage does not decrease (if any source code was changed) - [X ] Appropriate docs were updated (if necessary) Fixes #346 The existing notebook references an incorrect default connection name. This PR corrects that so that users can more easily cleanup after they use the [getting started notebook](https://togithub.com/googleapis/python-bigquery-dataframes/blob/main/notebooks/getting_started/getting_started_bq_dataframes.ipynb)
1 parent 0794788 commit 677f014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/getting_started/getting_started_bq_dataframes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@
925925
"# # Delete the BigQuery Connection\n",
926926
"# from google.cloud import bigquery_connection_v1 as bq_connection\n",
927927
"# client = bq_connection.ConnectionServiceClient()\n",
928-
"# CONNECTION_ID = f\"projects/{PROJECT_ID}/locations/{REGION}/connections/bigframes-rf-conn\"\n",
928+
"# CONNECTION_ID = f\"projects/{PROJECT_ID}/locations/{REGION}/connections/bigframes-default-connection\"\n",
929929
"# client.delete_connection(name=CONNECTION_ID)\n",
930930
"# print(\"Deleted connection '{}'.\".format(CONNECTION_ID))"
931931
]

0 commit comments

Comments
 (0)