UBERF-6180: Fix account issues (#5063)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2024-03-26 20:07:58 +05:00
committed by GitHub
parent 352e8a4f3f
commit 5716c053fd
17 changed files with 504 additions and 173 deletions
+6
View File
@@ -152,5 +152,11 @@ export async function createStorageDataAdapter (
if (storage === undefined) {
throw new Error('minio storage adapter require minio')
}
// We need to create bucket if it doesn't exist
if (storage !== undefined) {
if (!(await storage.exists(workspaceId))) {
await storage.make(workspaceId)
}
}
return new StorageBlobAdapter(workspaceId, storage)
}