Skip to content

Commit

Permalink
fix: use correct gcs bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-milan committed May 22, 2024
1 parent d975c1b commit 3d8dd23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/painel_obras/dump_data/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def download_data_to_gcs( # pylint: disable=R0912,R0913,R0914,R0915
log("Data was loaded successfully")

# Get the BLOB we've just created and make it public
blobs = list_blobs_with_prefix("datario", f"share/{dataset_id}/{table_id}/")
blobs = list_blobs_with_prefix("datario-public", f"share/{dataset_id}/{table_id}/")
if not blobs:
raise ValueError(f"No blob found at {blob_path}")
for blob in blobs:
Expand Down

0 comments on commit 3d8dd23

Please sign in to comment.