You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Storage bucket names must be globally unique. Two deployments in the same project need to have different prefixes thus we will not see the conflict, but deployments in different projects can use the same prefix triggering conflict on the bucket name.
Suggested solution would be to:
generate random suffix
add it to the bucket name
pass bucket name as variable to function
modify function top accept it.
The text was updated successfully, but these errors were encountered:
As the cloud function uses a hard-coded bucket name based on PROJECT_PREFIX variable (main.py:219), the proposed change requires modification of the function itself.
Storage bucket names must be globally unique. Two deployments in the same project need to have different prefixes thus we will not see the conflict, but deployments in different projects can use the same prefix triggering conflict on the bucket name.
Suggested solution would be to:
The text was updated successfully, but these errors were encountered: