Merge pull request #7416 from kobergj/DefaultAsyncUploads
[full-ci] Set default AsyncUploads to true
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
Enhancement: Set default for Async Uploads to true
|
||||||
|
|
||||||
|
Async Uploads are meanwhile standard and needed for multiple features. Hence we default them to true
|
||||||
|
|
||||||
|
https://github.com/owncloud/ocis/pull/7416
|
||||||
@@ -50,7 +50,7 @@ func DefaultConfig() *config.Config {
|
|||||||
Endpoint: "127.0.0.1:9233",
|
Endpoint: "127.0.0.1:9233",
|
||||||
Cluster: "ocis-cluster",
|
Cluster: "ocis-cluster",
|
||||||
DebounceDuration: 1000,
|
DebounceDuration: 1000,
|
||||||
AsyncUploads: false,
|
AsyncUploads: true,
|
||||||
EnableTLS: false,
|
EnableTLS: false,
|
||||||
},
|
},
|
||||||
ContentExtractionSizeLimit: 20 * 1024 * 1024, // Limit content extraction to <20MB files by default
|
ContentExtractionSizeLimit: 20 * 1024 * 1024, // Limit content extraction to <20MB files by default
|
||||||
|
|||||||
@@ -85,6 +85,7 @@ func DefaultConfig() *config.Config {
|
|||||||
PermissionsEndpoint: "com.owncloud.api.settings",
|
PermissionsEndpoint: "com.owncloud.api.settings",
|
||||||
MaxAcquireLockCycles: 20,
|
MaxAcquireLockCycles: 20,
|
||||||
LockCycleDurationFactor: 30,
|
LockCycleDurationFactor: 30,
|
||||||
|
AsyncUploads: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Events: config.Events{
|
Events: config.Events{
|
||||||
|
|||||||
Reference in New Issue
Block a user