Skip to content

Commit

Permalink
connect to 'postgres' instead of a database whose name is admin's name
Browse files Browse the repository at this point in the history
Signed-off-by: SHIMIZU Toshihiro <[email protected]>
  • Loading branch information
toshirin33 committed Mar 19, 2021
1 parent dbd89cf commit be2d179
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 be2d179

Please sign in to comment.