Skip to content

Commit 6ff898a

Browse files
lepistonecopybara-github
authored andcommitted
Fixup: allow to configure BigQuery project (grpc#35601)
In grpc#35384 these two lines were forgotten and introduced a bug in the script. Sorry for the mistake. Closes grpc#35601 COPYBARA_INTEGRATE_REVIEW=grpc#35601 from lepistone:fixup-bigquery-project 100d4d6 PiperOrigin-RevId: 599951984
1 parent 3a8360d commit 6ff898a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/run_tests/performance/bq_upload_result.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def _upload_netperf_latency_csv_to_bigquery(
5151
}
5252

5353
bq = big_query_utils.create_big_query()
54-
_create_results_table(bq, dataset_id, table_id)
54+
_create_results_table(bq, project_id, dataset_id, table_id)
5555

5656
if not _insert_result(
5757
bq, project_id, dataset_id, table_id, scenario_result, flatten=False
@@ -73,7 +73,7 @@ def _upload_scenario_result_to_bigquery(
7373
scenario_result = json.loads(f.read())
7474

7575
bq = big_query_utils.create_big_query()
76-
_create_results_table(bq, dataset_id, table_id)
76+
_create_results_table(bq, project_id, dataset_id, table_id)
7777

7878
if not _insert_scenario_result(
7979
bq,

0 commit comments

Comments
 (0)