diff options
author | Kegan Dougal <kegan@matrix.org> | 2021-03-08 14:50:37 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2021-03-08 14:50:37 +0000 |
commit | e865a1507ab9f9bc379cb887dc6a3bff30158749 (patch) | |
tree | 2a527ca3729b0d8429ba8c98e3181af13e50257d /setup | |
parent | 5912429d5329276a77eabb955735d35c7c89384a (diff) |
Make sure the component max open conns doesn't exceed 100
Diffstat (limited to 'setup')
-rw-r--r-- | setup/config/config_appservice.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup/config/config_appservice.go b/setup/config/config_appservice.go index 57cc7be5..4a14672e 100644 --- a/setup/config/config_appservice.go +++ b/setup/config/config_appservice.go @@ -43,7 +43,7 @@ type AppServiceAPI struct { func (c *AppServiceAPI) Defaults() { c.InternalAPI.Listen = "http://localhost:7777" c.InternalAPI.Connect = "http://localhost:7777" - c.Database.Defaults(10) + c.Database.Defaults(5) c.Database.ConnectionString = "file:appservice.db" } |