Skip to content

Commit

Permalink
Fix call to create bucket.
Browse files Browse the repository at this point in the history
  • Loading branch information
letitz committed Dec 10, 2024
1 parent 44a8ca9 commit 632b650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/datastore/data_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ def create_data_bundle_bucket_and_iams(data_bundle_name, emails):
"""Creates a data bundle bucket and adds iams for access."""
bucket_name = get_data_bundle_bucket_name(data_bundle_name)
location = local_config.ProjectConfig().get('data_bundle_bucket_location')
if not storage.create_bucket_if_needed(bucket_name, location):
if not storage.create_bucket_if_needed(bucket_name, location=location):
return False

client = storage.create_discovery_storage_client()
Expand Down

0 comments on commit 632b650

Please sign in to comment.