[fix]: [AH-1271]: fixed panic in download file flow in file manager framework (#3749)

* [ix]: [AH-1271]: fixed panic in download file flow in file manager framework
This commit is contained in:
Pragyesh Mishra 2025-04-29 15:20:56 +00:00 committed by Harness
parent cd395e8406
commit 6aa9e3cfbc

View File

@ -237,7 +237,7 @@ func (f *FileManager) DownloadFile(
if err != nil { if err != nil {
return nil, 0, "", fmt.Errorf("failed to get the blob for path: %s, "+ return nil, 0, "", fmt.Errorf("failed to get the blob for path: %s, "+
"with blob id: %s, with error %s", filePath, blob.ID, err) "with blob id: %s, with error %s", filePath, node.BlobID, err)
} }
completeFilaPath := path.Join(rootPathString + rootIdentifier + rootPathString + files + rootPathString + blob.Sha256) completeFilaPath := path.Join(rootPathString + rootIdentifier + rootPathString + files + rootPathString + blob.Sha256)