From 34e8ed2284b0182a00a94c901c947104112c9e78 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 15 Oct 2024 19:17:54 +0530 Subject: [PATCH] chore: lint --- server/src/storage/mino.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/storage/mino.ts b/server/src/storage/mino.ts index 62290ccb..8368e5dd 100644 --- a/server/src/storage/mino.ts +++ b/server/src/storage/mino.ts @@ -27,7 +27,7 @@ class BinaryOutputService { for (const key of Object.keys(binaryOutput)) { const binaryData = binaryOutput[key]; - const bufferData = Buffer.from(binaryData, 'binary'); + const bufferData = Buffer.from(binaryData, 'binary'); const minioKey = `${run.runId}/${key}`; await run.uploadBinaryOutputToMinioBucket(minioKey, bufferData); @@ -48,4 +48,4 @@ class BinaryOutputService { -export { minioClient, BinaryOutputService }; \ No newline at end of file +export { minioClient, BinaryOutputService }; \ No newline at end of file