From ed936ee977b747089232b7c930a33afc8f475515 Mon Sep 17 00:00:00 2001 From: Kaushik Iska Date: Wed, 19 Jul 2023 14:29:49 -0400 Subject: [PATCH] more fixes --- nexus/catalog/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus/catalog/src/lib.rs b/nexus/catalog/src/lib.rs index 1597f61ea6..436d592bf6 100644 --- a/nexus/catalog/src/lib.rs +++ b/nexus/catalog/src/lib.rs @@ -85,7 +85,7 @@ impl CatalogConfig { connection_string.push_str(&self.user); if !self.password.is_empty() { connection_string.push_str(" password="); - let encoded_password = urlencoding::encode(&config.password); + let encoded_password = urlencoding::encode(&self.password); connection_string.push_str(&encoded_password); } connection_string.push_str(" dbname=");