diff --git a/crates/store/src/backend/postgres/main.rs b/crates/store/src/backend/postgres/main.rs index c2864ee9..9968cff7 100644 --- a/crates/store/src/backend/postgres/main.rs +++ b/crates/store/src/backend/postgres/main.rs @@ -42,7 +42,7 @@ impl PostgresStore { .unwrap_or_default(); cfg.options = config.value((&prefix, "options")).map(|s| s.to_string()); cfg.manager = Some(ManagerConfig { - recycling_method: RecyclingMethod::Fast, + recycling_method: RecyclingMethod::Clean, }); if let Some(max_conn) = config.property::((&prefix, "pool.max-connections")) { cfg.pool = PoolConfig::new(max_conn).into();