Skip to content

Commit

Permalink
Merge pull request hyperledger-indy#2366 from toshirin33/postgres_plu…
Browse files Browse the repository at this point in the history
…gin_default_db

connect to 'postgres' instead of a database whose name is admin's name
  • Loading branch information
ianco authored Mar 30, 2021
2 parents 8fa3c2c + 32c5d08 commit 32e30b6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 32e30b6

Please sign in to comment.