Skip to content

Commit

Permalink
Merge pull request #1266 from mintlayer/alfie/dbname
Browse files Browse the repository at this point in the history
Fix postgres connection string
  • Loading branch information
alfiedotwtf committed Oct 9, 2023
2 parents c5ed4dc + e6793da commit 72dbaf9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl TransactionalApiServerPostgresStorage {
};

let database_part = match database {
Some(d) => format!("database={}", d),
Some(d) => format!("dbname={}", d),
None => "".to_string(),
};

Expand Down

0 comments on commit 72dbaf9

Please sign in to comment.