From b9f4ab72846bcc4b12b5c8697c188794d182db7b Mon Sep 17 00:00:00 2001 From: Alex <77341673+defectiveAi@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:04:04 +0100 Subject: [PATCH] Change blob_size. (#66) --- .../SettlementReports_v2/SettlementReportFileBlobStorage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/settlement-report/SettlementReports.Infrastructure/SettlementReports_v2/SettlementReportFileBlobStorage.cs b/source/settlement-report/SettlementReports.Infrastructure/SettlementReports_v2/SettlementReportFileBlobStorage.cs index c22912c..9f19841 100644 --- a/source/settlement-report/SettlementReports.Infrastructure/SettlementReports_v2/SettlementReportFileBlobStorage.cs +++ b/source/settlement-report/SettlementReports.Infrastructure/SettlementReports_v2/SettlementReportFileBlobStorage.cs @@ -31,7 +31,7 @@ public Task 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)