Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Jul 19, 2023
1 parent 0fa3a77 commit ed936ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nexus/catalog/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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=");
Expand Down

0 comments on commit ed936ee

Please sign in to comment.