aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Storage/MinioClientManager.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-28 12:04:53 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-28 12:04:53 -0400
commit62da31eb31baf7e27bf4c6d3d15e2c69617e2f74 (patch)
tree195722b46ae97c4a5dd7b1c1485ea58622f7d281 /back-end/src/Storage/MinioClientManager.cs
parent5dfe3dc0db51624082d20a31767c5a6aa774749d (diff)
package updates and new config upstream cors update
Diffstat (limited to 'back-end/src/Storage/MinioClientManager.cs')
-rw-r--r--back-end/src/Storage/MinioClientManager.cs4
1 files changed, 2 insertions, 2 deletions
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
{