0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-18 12:28:28 +02:00

Make sure the component max open conns doesn't exceed 100

This commit is contained in:
Kegan Dougal 2021-03-08 14:50:37 +00:00
parent 5912429d53
commit e865a1507a

View file

@ -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"
}