reflect postgres superuser changes in pageserver->compute connstring

This commit is contained in:
Stas Kelvich
2021-07-20 23:13:29 +03:00
parent c4b2bf7ebd
commit a17b2a4364

View File

@@ -382,10 +382,11 @@ impl PostgresNode {
pub fn connstr(&self) -> String {
format!(
"host={} port={} user={}",
"host={} port={} user={} dbname={}",
self.address.ip(),
self.address.port(),
self.whoami()
"zenith_admin",
"postgres"
)
}