Skip to content

Commit

Permalink
Change blob_size. (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
defectiveAi authored Nov 18, 2024
1 parent cb9cbde commit b9f4ab7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public Task<Stream> OpenForReadingAsync(SettlementReportRequestId reportRequestI
{
var blobName = GetBlobName(reportRequestId, fileName);
var blobClient = _blobContainerClient.GetBlobClient(blobName);
return blobClient.OpenReadAsync();
return blobClient.OpenReadAsync(bufferSize: 25 * 1024 * 1024);
}

public async Task DownloadAsync(SettlementReportRequestId reportRequestId, string fileName, Stream downloadStream)
Expand Down

0 comments on commit b9f4ab7

Please sign in to comment.