mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-30 17:00:57 -06:00
fix(sharing): use 1 worker in single binary
Signed-off-by: jkoberg <jkoberg@owncloud.com>
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
Bugfix: Set MaxConcurrency to 1
|
||||
|
||||
Set MaxConcurrency for frontend and userlog services to 1. Too many workers will negatively impact performance on small machines.
|
||||
Set MaxConcurrency for frontend and userlog and sharing services to 1. Too many workers will negatively impact performance on small machines.
|
||||
|
||||
https://github.com/owncloud/ocis/pull/10580
|
||||
https://github.com/owncloud/ocis/pull/10557
|
||||
|
||||
@@ -47,7 +47,7 @@ func DefaultConfig() *config.Config {
|
||||
JSONCS3: config.UserSharingJSONCS3Driver{
|
||||
ProviderAddr: "com.owncloud.api.storage-system",
|
||||
SystemUserIDP: "internal",
|
||||
MaxConcurrency: 5,
|
||||
MaxConcurrency: 1,
|
||||
},
|
||||
OwnCloudSQL: config.UserSharingOwnCloudSQLDriver{
|
||||
DBUsername: "owncloud",
|
||||
|
||||
Reference in New Issue
Block a user