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) panic(pingErr)
} }
var maxIdleConnections, maxOpenConnections int maxIdleConnections, maxOpenConnections := default_maxIdleConnections, default_maxOpenConnections
if conf.MaxIdleConnections != 0 { if conf.MaxIdleConnections != 0 {
maxIdleConnections = conf.MaxIdleConnections maxIdleConnections = conf.MaxIdleConnections
} else {
maxIdleConnections = default_maxIdleConnections
} }
if conf.MaxOpenConnections != 0 { if conf.MaxOpenConnections != 0 {
maxOpenConnections = conf.MaxOpenConnections maxOpenConnections = conf.MaxOpenConnections
} else {
maxOpenConnections = default_maxOpenConnections
} }
_db_connection.SetMaxIdleConns(maxIdleConnections) _db_connection.SetMaxIdleConns(maxIdleConnections)