From 62da31eb31baf7e27bf4c6d3d15e2c69617e2f74 Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 28 Sep 2023 12:04:53 -0400 Subject: package updates and new config upstream cors update --- back-end/src/Storage/MinioClientManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'back-end/src/Storage') diff --git a/back-end/src/Storage/MinioClientManager.cs b/back-end/src/Storage/MinioClientManager.cs index 6dd0f5c..105e298 100644 --- a/back-end/src/Storage/MinioClientManager.cs +++ b/back-end/src/Storage/MinioClientManager.cs @@ -115,8 +115,8 @@ namespace Content.Publishing.Blog.Admin.Storage .WithObject(filePath) .WithCallbackStream(async (stream, cancellation) => { - //Read the objec to memory - await stream.CopyToAsync(output, 4096, MemoryUtil.Shared, cancellation); + //Read the object to memory + await stream.CopyToAsync(output, 16384, MemoryUtil.Shared, cancellation); }); try { -- cgit