Skip to content
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 pendantic clippy. #1685

Merged
merged 1 commit into from
Feb 5, 2025
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 kube-runtime/src/controller/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ where
Poll::Pending | Poll::Ready(None) => break Poll::Pending,
// The above future never returns Poll::Ready(Some(_)).
_ => unreachable!(),
};
};
}
}

// Try to take a new message that isn't already being processed
// leave the already-processing ones in the queue, so that we can take them once
Expand Down
2 changes: 1 addition & 1 deletion kube-runtime/src/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ impl Recorder {
.await?;
} else {
events.create(&PostParams::default(), &event).await?;
};
}

{
let mut cache = self.cache.write().await;
Expand Down