feat: add runId check

This commit is contained in:
karishmas6
2024-10-16 01:38:02 +05:30
parent 36f9277db7
commit 3f4b67b05a

View File

@@ -71,7 +71,7 @@ class BinaryOutputService {
} }
try { try {
const minioKey = `${run.runId}/${key}`; const minioKey = run.runId ? `${run.runId}/${key}`: key;
console.log(`Uploading data to MinIO with key: ${minioKey}`); console.log(`Uploading data to MinIO with key: ${minioKey}`);