Skip to content

Commit

Permalink
fix mongoose connect
Browse files Browse the repository at this point in the history
  • Loading branch information
deniapps committed Dec 22, 2023
1 parent 402d775 commit f9dc830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feathers/src/mongoose.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function (app) {
useNewUrlParser: true,
useUnifiedTopology: true,
user: app.get("mongoUser"),
password: app.get("mongoPass"),
pass: app.get("mongoPass"),
});
} else {
mongoose.connect(app.get("mongodb"), {
Expand Down

0 comments on commit f9dc830

Please sign in to comment.