Skip to content

Commit 398b322

Browse files
authored
Add name to BQ File Loads lambda to ensure changes are update compatible (#34807) (#34813)
1 parent 7ca3068 commit 398b322

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

sdks/python/apache_beam/io/gcp/bigquery_file_loads.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,10 @@ def _load_data(
11661166
else:
11671167
# Loads can happen in parallel.
11681168
finished_temp_tables_load_job_ids_list_pc = (
1169-
finished_temp_tables_load_job_ids_pc | beam.Map(lambda x: [x]))
1169+
finished_temp_tables_load_job_ids_pc
1170+
# This name is to ensure update compat.
1171+
| "Map(<lambda at bigquery_file_loads.py:1157>)" >>
1172+
beam.Map(lambda x: [x]))
11701173

11711174
copy_job_outputs = (
11721175
finished_temp_tables_load_job_ids_list_pc

0 commit comments

Comments
 (0)