mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-12-26 14:45:31 +08:00
simple refactoring
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user