diff --git a/experimental/plugins/postgres_storage/src/postgres_storage.rs b/experimental/plugins/postgres_storage/src/postgres_storage.rs index 14e9b18ff4..c451affb1d 100644 --- a/experimental/plugins/postgres_storage/src/postgres_storage.rs +++ b/experimental/plugins/postgres_storage/src/postgres_storage.rs @@ -1045,7 +1045,8 @@ impl PostgresStorageType { } url_base.push_str("@"); url_base.push_str(&config.url[..]); - url_base.push_str("/postgres"); + url_base.push_str("/"); + url_base.push_str(_POSTGRES_DB); url_base }