Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasvb90 committed Jul 18, 2023
1 parent a6b1a06 commit bbadfc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private void downloadToFS(String fileName, Path location, String primaryTerm, Tr
Files.delete(filePath);
}

try (InputStream inputStream = transferService.downloadBlob(remoteBaseTransferPath.add(primaryTerm), fileName)) {
try (InputStream inputStream = transferService.downloadBlob(remoteDataTransferPath.add(primaryTerm), fileName)) {
InputStream transferInputStream = inputStream;
if (transferContentType == TransferContentType.DATA && cryptoManager != null) {
transferInputStream = cryptoManager.createDecryptingStream(inputStream);
Expand Down

0 comments on commit bbadfc1

Please sign in to comment.