Skip to content

Commit

Permalink
feat: convert vals to strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyshah committed Nov 14, 2023
1 parent 0c5422c commit c721ccb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dbt/adapters/bigquery/python_submissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,7 @@ def _configure_batch(self):
# Apply configuration from dataproc_batch key, possibly overriding defaults.
if self.credential.dataproc_batch:
batch = update_batch_from_config(self.credential.dataproc_batch, batch)
if batch.runtime_config.properties:
for key, val in batch.runtime_config.properties.items():
batch.runtime_config.properties[key] = str(val)
return batch

0 comments on commit c721ccb

Please sign in to comment.