Run formatter on files

better-accounts
maru 2024-05-10 15:49:26 -04:00
parent a8502fcd3f
commit 693663103b
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D
3 changed files with 4 additions and 5 deletions

View File

@ -44,7 +44,7 @@ func Init(username, password, protocol, address, database string) error {
}
handle.SetMaxOpenConns(conns)
handle.SetMaxIdleConns(conns/4)
handle.SetMaxIdleConns(conns / 4)
handle.SetConnMaxIdleTime(time.Second * 10)

View File

@ -130,4 +130,3 @@ func debugHandler(router *http.ServeMux) http.Handler {
router.ServeHTTP(w, r)
})
}