-
Notifications
You must be signed in to change notification settings - Fork 54
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
Replaced hyphen in key #647
Conversation
@Bopobopob thank you for your contribution! As this is your first code contribution, please read the following Contributor License Agreement (CLA). If you agree with the CLA, please reply with the following information:
Contributor License Agreement
Contribution License AgreementThis Contribution License Agreement ("Agreement") governs your Contribution(s) (as defined below) and conveys certain license rights to Fox-IT B.V. ("Fox-IT") for your Contribution(s) to Fox-IT"s open source Dissect project. This Agreement covers any and all Contributions that you ("You" or "Your"), now or in the future, Submit (as defined below) to this project. This Agreement is between Fox-IT B.V. and You and takes effect when you click an “I Accept” button, check box presented with these terms, otherwise accept these terms or, if earlier, when You Submit a Contribution.
|
@Bopobopob Thank you for your pull request and following up on issue: #644. We will review your PR as soon as possible. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #647 +/- ##
=======================================
Coverage 74.75% 74.75%
=======================================
Files 288 288
Lines 23929 23930 +1
=======================================
+ Hits 17887 17888 +1
Misses 6042 6042
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@DissectBot agree [company=""] |
the config _key in linux services. Reason: Having a hyphen in the key, raises a RecordDescriptorError.
correction
e8bcc7c
to
fc21bcb
Compare
Added a replace of hyphen to underscore for the config _key in linux services. Reason: Having a hyphen in the key, raises a RecordDescriptorError. Co-authored-by: Rutger de Waardt <[email protected]>
Previously discussed in issues.
Having a service installed on an image, that has a hyphen in the key makes target.services() raises a RecordDescriptorError exception.
By adding a simple replace of the hyphen to underscore, it runs without issues.