Merge pull request #7273 from owncloud/change-default-config-tus

change the default value for TUS
This commit is contained in:
Michael Barz
2023-09-13 12:18:00 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
Change: Change the default TUS chunk size
We changed the default TUS chunk size from 100MB to 10MB. You can still use the old value by configuring it in your deployment.
https://github.com/owncloud/ocis/pull/7273

View File

@@ -83,7 +83,7 @@ func DefaultConfig() *config.Config {
EnableFavorites: false,
EnableProjectSpaces: true,
EnableShareJail: true,
UploadMaxChunkSize: 1e+8,
UploadMaxChunkSize: 1e+7,
UploadHTTPMethodOverride: "",
DefaultUploadProtocol: "tus",
EnableResharing: true,