-
Notifications
You must be signed in to change notification settings - Fork 150
fix: remove graceful requirement for metrics aggregator #4060
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
base: 01-28-fix_guard_cache_custom_serve_routes
Are you sure you want to change the base?
fix: remove graceful requirement for metrics aggregator #4060
Conversation
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
| @@ -116,7 +116,6 @@ impl TermSignal { | |||
| /// Returns true if the user should abort any graceful attempt to shutdown and shutdown immediately. | |||
| pub async fn recv(&mut self) -> bool { | |||
| let change = self.0.changed().await; | |||
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 line causes CI to fail because it declares an unused variable 'change'. Since the tracing statement that used this variable was removed, the variable is now unused, triggering a compiler warning that's treated as an error. Change 'let change = self.0.changed().await;' to 'let _change = self.0.changed().await;' or 'let _ = self.0.changed().await;' to fix the issue.
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
Pull Request Review: fix: remove graceful requirement for metrics aggregatorSummaryThis PR changes the metrics aggregator service to not require graceful shutdown and removes debug code from the termination signal handler. The changes primarily affect service lifecycle management during shutdown. Code Quality & Best Practices✅ Positive Changes
|
24a2036 to
c6e49a4
Compare

No description provided.