-
Notifications
You must be signed in to change notification settings - Fork 178
RUST-1122 Fix x509 auth for pkcs8 keys and Atlas free tier #532
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
Conversation
src/coll/mod.rs
Outdated
@@ -1140,6 +1140,7 @@ where | |||
let docs: Vec<&T> = ds.iter().skip(n_attempted).map(Borrow::borrow).collect(); | |||
let insert = Insert::new(self.namespace(), docs, options.clone()); | |||
|
|||
#[allow(clippy::needless_option_as_deref)] |
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 appears to be a clippy false-positive; the suggestion (just session
) doesn't work because this is in a loop, which I think is context clippy isn't looking at.
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.
Yep, see rust-lang/rust-clippy#8047. I actually already pushed a fix for these errors last night, so you can omit these changes from here.
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.
Ah, thanks; removed.
49f3f12
to
4dd6fc7
Compare
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!
Hype |
No description provided.