Skip to content
Snippets Groups Projects
Commit 8c76d0ae authored by Riabokon Stanislav(EPAM)[GCP]'s avatar Riabokon Stanislav(EPAM)[GCP]
Browse files

Fixed a bug related to getting of bucket name (Bucket name should be unique...

Fixed a bug related to getting of bucket name (Bucket name should be unique across GCP. We had to add ProjectID to the naming to fix the issue with provisioning of a new bucket)
parent 4162d618
No related branches found
No related tags found
4 merge requests!57Wip unique backed name across gcp mykola zamkovyi,!51Publish CICD Community for Legal GONRG-636,!50Wip unique backed name across gcp mykola zamkovyi,!46Unique bucket name across GCP (GONRG-701)
Pipeline #6893 failed
......@@ -68,7 +68,7 @@ public class StorageReaderImpl implements IStorageReader {
}
private String getTenantBucketName() {
return this.tenantInfo.getName() + "-" + BUCKET_NAME;
return this.tenantInfo.getProjectId() + "-" + this.tenantInfo.getName() + "-" + BUCKET_NAME;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment