-
Notifications
You must be signed in to change notification settings - Fork 141
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
Handle unwrap when shutting down JDC server #1352
Handle unwrap when shutting down JDC server #1352
Conversation
1d8516c
to
cd958d0
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1352 +/- ##
=======================================
Coverage 19.08% 19.08%
=======================================
Files 166 166
Lines 11066 11066
=======================================
Hits 2112 2112
Misses 8954 8954
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Looks good!!!!
cd958d0
to
09b806d
Compare
Thanks @Shourya742, addressed your comments |
09b806d
to
073bcd2
Compare
Rebased without further changes |
073bcd2
to
8a6a41a
Compare
oops, looks like SemVer CI is going to force us to bump MAJOR on taking note on #1345 |
8a6a41a
to
6bbbd9b
Compare
Ha! |
yes, can we add a new commit bumping MAJOR on |
91a2087
to
5fa3813
Compare
02243ea
to
151befc
Compare
In practice we always keep all of our crates updated with latest code changes in all of other internal crates, so instead of maintaing the versioning of each one for internal use, this commit just links to the latest code in each crate. This would alllow us to catch errors that might appear in one crate but are originated in other. While this would sometimes require more work, this can save us error that previously would appear only in the release process. This approach fits the current directory/project structre, but if crates are moved outside of this repo, they should be linked to the published crate on crates.io.
..This should prevent the code from panicing if a signal to shutdown is sent the JDC server As a result, MAJOR is pumped for `roles-logic-sv2` crate as new property was added to public `Error` struct.
151befc
to
6deea02
Compare
1st commit(9a35baa) resolves #1189
2nd and 3rd resolves #1351