diff --git a/crates/store/src/backend/postgres/main.rs b/crates/store/src/backend/postgres/main.rs index 0277a4b7..2b1e7815 100644 --- a/crates/store/src/backend/postgres/main.rs +++ b/crates/store/src/backend/postgres/main.rs @@ -29,6 +29,7 @@ impl PostgresStore { cfg.connect_timeout = config .property::>((&prefix, "timeout")) .unwrap_or_default(); + cfg.options = config.value((&prefix, "options")).map(|s| s.to_string()); cfg.manager = Some(ManagerConfig { recycling_method: RecyclingMethod::Fast, });