simple refactoring

This commit is contained in:
Chris Lu 2018-05-03 00:15:59 -07:00
parent 63c4884b16
commit 94a35f25f3

View file

@ -94,17 +94,12 @@ func getDbConnection(conf PostgresConf) *sql.DB {
panic(pingErr)
}
var maxIdleConnections, maxOpenConnections int
maxIdleConnections, maxOpenConnections := default_maxIdleConnections, default_maxOpenConnections
if conf.MaxIdleConnections != 0 {
maxIdleConnections = conf.MaxIdleConnections
} else {
maxIdleConnections = default_maxIdleConnections
}
if conf.MaxOpenConnections != 0 {
maxOpenConnections = conf.MaxOpenConnections
} else {
maxOpenConnections = default_maxOpenConnections
}
_db_connection.SetMaxIdleConns(maxIdleConnections)