mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-27 18:56:30 +00:00
Report min_pool_size correctly (#471)
This commit is contained in:
@@ -314,7 +314,7 @@ where
|
|||||||
database_name.to_string(), // database
|
database_name.to_string(), // database
|
||||||
pool_config.user.username.to_string(), // force_user
|
pool_config.user.username.to_string(), // force_user
|
||||||
pool_config.user.pool_size.to_string(), // pool_size
|
pool_config.user.pool_size.to_string(), // pool_size
|
||||||
"0".to_string(), // min_pool_size
|
pool_config.user.min_pool_size.unwrap_or(0).to_string(), // min_pool_size
|
||||||
"0".to_string(), // reserve_pool
|
"0".to_string(), // reserve_pool
|
||||||
pool_config.pool_mode.to_string(), // pool_mode
|
pool_config.pool_mode.to_string(), // pool_mode
|
||||||
pool_config.user.pool_size.to_string(), // max_connections
|
pool_config.user.pool_size.to_string(), // max_connections
|
||||||
|
|||||||
Reference in New Issue
Block a user