Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions airflow/providers/google/cloud/hooks/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2250,7 +2250,7 @@ def var_print(var_name):
if project_id is None:
if var_name is not None:
self.log.info(
'Project not included in %s: %s; using project "%s"',
'Project is not included in %s: %s; using project "%s"',
var_name,
table_input,
default_project_id,
Expand Down Expand Up @@ -2916,7 +2916,7 @@ def var_print(var_name):
if project_id is None:
if var_name is not None:
log.info(
'Project not included in %s: %s; using project "%s"',
'Project is not included in %s: %s; using project "%s"',
var_name,
table_input,
default_project_id,
Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/google/cloud/operators/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2550,7 +2550,7 @@ class BigQueryInsertJobOperator(BaseOperator):


:param configuration: The configuration parameter maps directly to BigQuery's
configuration field in the job object. For more details see
configuration field in the job object. For more details see
https://cloud.google.com/bigquery/docs/reference/v2/jobs
:param job_id: The ID of the job. It will be suffixed with hash of job configuration
unless ``force_rerun`` is True.
Expand Down
Loading