-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(db_ops): call collection.find() with correct parameters #1795
Conversation
Fixes NODE-1596
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
lib/operations/db_ops.js
Outdated
} | ||
); | ||
}); | ||
finalOptions.projection = { dbName: 1 }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
finalOptions
is subsequently used for the below updateOne
call, so you have inadvertently added a projection to that command.
lib/operations/db_ops.js
Outdated
} | ||
); | ||
}); | ||
let findOptions = finalOptions; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be const
, since we are not changing the reference.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Fixes NODE-1596