Skip to content

Commit

Permalink
Make chunk size 8k
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyhappydan committed May 3, 2024
1 parent 4d052f1 commit 844d557
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ object S3FileOperations {
final case class S3FileMetadata(contentType: Option[ContentType], metadata: FileStorageMetadata)

private val log = Logger[S3FileOperations]
private val ChunkSize = 1024
private val ChunkSize = 8 * 1024

def mk(client: S3StorageClient)(implicit as: ActorSystem, uuidf: UUIDF): S3FileOperations = new S3FileOperations {

Expand Down

0 comments on commit 844d557

Please sign in to comment.