Skip to content

Commit

Permalink
Merge pull request #8317 from owncloud/fix-concurrent-shares-config
Browse files Browse the repository at this point in the history
fix: setting config for concurrent share requests
  • Loading branch information
JammingBen authored Jan 30, 2024
2 parents d73351a + 1cb6467 commit 4814dc3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/fix-concurrent-shares-config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Fix concurrent shares config

We fixed setting the config for concurrent web requests, which did not work as expected before.

https://github.com/owncloud/ocis/pull/8317
4 changes: 3 additions & 1 deletion services/web/pkg/config/defaults/defaultconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ func DefaultConfig() *config.Config {
Editor: &config.Editor{},
FeedbackLink: &config.FeedbackLink{},
Embed: &config.Embed{},
ConcurrentRequests: &config.ConcurrentRequests{},
ConcurrentRequests: &config.ConcurrentRequests{
Shares: &config.ConcurrentRequestsShares{},
},
Routing: config.Routing{
IDBased: true,
},
Expand Down

0 comments on commit 4814dc3

Please sign in to comment.