Skip to content

Commit

Permalink
lando/lamp#51: Correct username field on healthceck.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec authored Mar 12, 2024
1 parent b7b2590 commit 77dbd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/get-default-healthcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = options => {
];

// Only include whatever creds are available.
options.creds.user ? healthcheck.push(`--user=${options.creds.user}`) : false;
options.creds.user ? healthcheck.push(`--username=${options.creds.user}`) : false;
options.creds.database ? healthcheck.push(`--dbname=${options.creds.database}`) : false;

return healthcheck.concat([
Expand Down

0 comments on commit 77dbd42

Please sign in to comment.