From 543c08bc3fc22c943856192baf9a71d90f7a0ed8 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Fri, 15 Nov 2024 23:39:37 +0530 Subject: [PATCH] chore: -rm bucket was not found message --- server/src/storage/mino.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/storage/mino.ts b/server/src/storage/mino.ts index d2146228..3fc3f3cf 100644 --- a/server/src/storage/mino.ts +++ b/server/src/storage/mino.ts @@ -14,7 +14,7 @@ minioClient.bucketExists('maxun-test') if (exists) { console.log('MinIO was connected successfully.'); } else { - console.log('Bucket does not exist, but MinIO was connected.'); + console.log('MinIO was connected.'); } }) .catch((err) => {