Skip to content
Snippets Groups Projects

Unique bucket name across GCP (GONRG-701)

Merged Riabokon Stanislav(EPAM)[GCP] requested to merge unique_backed_name_across_GCP into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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;
}
}
Loading