Skip to content

Commit

Permalink
Fix typo in db error message (#9612)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stenz123 authored Nov 21, 2024
1 parent da7a078 commit 25d1dfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe("handlePostgresDataError", function () {
- You have a PostgreSQL database running
- You have passed the correct credentials in medusa-config.js
- You have formatted the database connection string correctly. See below:
"postgres://[username]:[password]@[host]:[post]/[db_name]" - If there is no password, you can omit it from the connection string
"postgres://[username]:[password]@[host]:[port]/[db_name]" - If there is no password, you can omit it from the connection string
${EOL}
${error.message}`
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function handlePostgresDatabaseError(err: any): never {
- You have a PostgreSQL database running
- You have passed the correct credentials in medusa-config.js
- You have formatted the database connection string correctly. See below:
"postgres://[username]:[password]@[host]:[post]/[db_name]" - If there is no password, you can omit it from the connection string
"postgres://[username]:[password]@[host]:[port]/[db_name]" - If there is no password, you can omit it from the connection string
${EOL}
${err.message}`
)
Expand Down

0 comments on commit 25d1dfd

Please sign in to comment.