diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-05-01 13:34:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-01 13:34:53 +0100 |
commit | f7cfa758864cc9849ce8b0539895283417b75eb0 (patch) | |
tree | fd75b5363172dacd7eab3b47c9a3ab1b7c4721bb /cmd/create-account | |
parent | 908108c23e47df5fbf0d6629b676e105abd2a564 (diff) |
Limit database connections (#980, #564) (#998)
* Limit database connections (#564)
- Add new options to the config file database:
max_open_conns: 100
max_idle_conns: 2
conn_max_lifetime: -1
- Implement connection parameter setup on the *DB (database/sql) in internal/sqlutil/trace.go:Open()
- Propagate the values in the form of DbProperties interface via all the
Open() and NewDatabase() functions
Signed-off-by: Tomas Jirka <tomas.jirka@email.cz>
* Fix wasm builds
* Remove file accidentally added from working tree
Co-authored-by: Tomas Jirka <tomas.jirka@email.cz>
Diffstat (limited to 'cmd/create-account')
-rw-r--r-- | cmd/create-account/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/create-account/main.go b/cmd/create-account/main.go index fc51a5bb..eca9b2fe 100644 --- a/cmd/create-account/main.go +++ b/cmd/create-account/main.go @@ -63,7 +63,7 @@ func main() { serverName := gomatrixserverlib.ServerName(*serverNameStr) - accountDB, err := accounts.NewDatabase(*database, serverName) + accountDB, err := accounts.NewDatabase(*database, nil, serverName) if err != nil { fmt.Println(err.Error()) os.Exit(1) @@ -78,7 +78,7 @@ func main() { os.Exit(1) } - deviceDB, err := devices.NewDatabase(*database, serverName) + deviceDB, err := devices.NewDatabase(*database, nil, serverName) if err != nil { fmt.Println(err.Error()) os.Exit(1) |