-
-
Notifications
You must be signed in to change notification settings - Fork 331
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: properly handle exit signal if binary is used with systemd #7453
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## unstable #7453 +/- ##
=========================================
Coverage 50.25% 50.25%
=========================================
Files 602 602
Lines 40403 40401 -2
Branches 2204 2204
=========================================
- Hits 20306 20305 -1
+ Misses 20057 20056 -1
Partials 40 40 |
Performance Report✔️ no performance regression detected Full benchmark results
|
turns out the proper fix for this was to exec out of the stub as systemd would not wait for process to shut down otherwise by default even if exit signal is properly forwarded this is also much cleaner now as we don't spawn two processes for no reason the relevant change can be found here ChainSafe/caxa@0e64e72 |
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 🎸
🎉 This PR is included in v1.27.0 🎉 |
Closes #7447