Fixup: allow to configure BigQuery project (#35601)
In #35384 these two lines were forgotten and introduced a bug in the
script.
Sorry for the mistake.
Closes #35601
COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/35601 from lepistone:fixup-bigquery-project 100d4d68ad
PiperOrigin-RevId: 599951984
This commit is contained in:
parent
3a8360dba8
commit
6ff898a10b
|
|
@ -51,7 +51,7 @@ def _upload_netperf_latency_csv_to_bigquery(
|
|||
}
|
||||
|
||||
bq = big_query_utils.create_big_query()
|
||||
_create_results_table(bq, dataset_id, table_id)
|
||||
_create_results_table(bq, project_id, dataset_id, table_id)
|
||||
|
||||
if not _insert_result(
|
||||
bq, project_id, dataset_id, table_id, scenario_result, flatten=False
|
||||
|
|
@ -73,7 +73,7 @@ def _upload_scenario_result_to_bigquery(
|
|||
scenario_result = json.loads(f.read())
|
||||
|
||||
bq = big_query_utils.create_big_query()
|
||||
_create_results_table(bq, dataset_id, table_id)
|
||||
_create_results_table(bq, project_id, dataset_id, table_id)
|
||||
|
||||
if not _insert_scenario_result(
|
||||
bq,
|
||||
|
|
|
|||
Loading…
Reference in New Issue