From 1889f6cadaac415bad36d9451251b46833d3d687 Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Tue, 25 Nov 2025 15:39:23 +0200 Subject: [PATCH] minio storage uploud fix pt2 --- backend/routers/fileStorage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routers/fileStorage.py b/backend/routers/fileStorage.py index a6f73110..f8832698 100644 --- a/backend/routers/fileStorage.py +++ b/backend/routers/fileStorage.py @@ -217,7 +217,7 @@ def uploudMedCert(requestItem: medCertUploud): client = Minio_Storage.minioConnection.minioConnect(requestItem.env) generateMedCertPDF(requestItem) today = datetime.today().strftime('%Y-%m-%d') - found = client.bucket_exists("mih") + found = client.bucket_exists(bucket_name="mih") if not found: client.make_bucket("mih") else: