Skip to content

fix new clippy lints from 1.67.0 #2451

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

Merged
merged 1 commit into from
Jan 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tracing-error/src/subscriber.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ where
}

impl WithContext {
pub(crate) fn with_context<'a>(
pub(crate) fn with_context(
&self,
dispatch: &'a Dispatch,
dispatch: &Dispatch,
id: &span::Id,
mut f: impl FnMut(&'static Metadata<'static>, &str) -> bool,
) {
Expand Down
4 changes: 2 additions & 2 deletions tracing-opentelemetry/src/subscriber.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ pub(crate) struct WithContext(
impl WithContext {
// This function allows a function to be called in the context of the
// "remembered" subscriber.
pub(crate) fn with_context<'a>(
pub(crate) fn with_context(
&self,
dispatch: &'a tracing::Dispatch,
dispatch: &tracing::Dispatch,
id: &span::Id,
mut f: impl FnMut(&mut OtelData, &dyn PreSampledTracer),
) {
Expand Down