-
Notifications
You must be signed in to change notification settings - Fork 869
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 Latest Clippy Lints for object_store #5546
Conversation
@@ -138,6 +138,7 @@ struct BatchDeleteResponse { | |||
|
|||
#[derive(Deserialize)] | |||
enum DeleteObjectResult { | |||
#[allow(unused)] |
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.
It was complaining because we never use this field outside of the deserialization routine
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.
so is it actually unused? Or is this a clippy false positive?
Merging as uncontroversial and unblocks CI |
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.
Thanks @tustvold
@@ -138,6 +138,7 @@ struct BatchDeleteResponse { | |||
|
|||
#[derive(Deserialize)] | |||
enum DeleteObjectResult { | |||
#[allow(unused)] |
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.
so is it actually unused? Or is this a clippy false positive?
Which issue does this PR close?
Closes #.
Rationale for this change
Follow up to #5544
What changes are included in this PR?
Are there any user-facing changes?