Johannes
Results
1
comments of
Johannes
https://github.com/rust10x/rust-web-app/blob/main/crates/libs/lib-core/src/model/store/mod.rs says: ``` pub async fn new_db_pool() -> sqlx::Result { // * See NOTE 1) below let max_connections = if cfg!(test) { 1 } else { 5 }; PgPoolOptions::new() .max_connections(max_connections)...