Skip to content

Commit

Permalink
Merge pull request #7416 from kobergj/DefaultAsyncUploads
Browse files Browse the repository at this point in the history
[full-ci] Set default AsyncUploads to true
  • Loading branch information
micbar authored Oct 6, 2023
2 parents c1dcc42 + f189b11 commit b79ff4e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/default-async-uploads.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion services/search/pkg/config/defaults/defaultconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func DefaultConfig() *config.Config {
Endpoint: "127.0.0.1:9233",
Cluster: "ocis-cluster",
DebounceDuration: 1000,
AsyncUploads: false,
AsyncUploads: true,
EnableTLS: false,
},
ContentExtractionSizeLimit: 20 * 1024 * 1024, // Limit content extraction to <20MB files by default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func DefaultConfig() *config.Config {
PermissionsEndpoint: "com.owncloud.api.settings",
MaxAcquireLockCycles: 20,
LockCycleDurationFactor: 30,
AsyncUploads: true,
},
},
Events: config.Events{
Expand Down

0 comments on commit b79ff4e

Please sign in to comment.