-
Notifications
You must be signed in to change notification settings - Fork 177
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
[core] check-sample-applier-process-id-fix #1676
Conversation
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.
What about process samples? they also have a pid :)
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.
clang-tidy made some suggestions
@@ -96,14 +96,44 @@ namespace eCAL | |||
return true; | |||
} | |||
|
|||
bool CSampleApplier::IsSameProcess(const Registration::Sample& sample_) |
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.
warning: method 'IsSameProcess' can be made const [readability-make-member-function-const]
bool CSampleApplier::IsSameProcess(const Registration::Sample& sample_) | |
bool CSampleApplier::IsSameProcess(const Registration::Sample& sample_) const |
ecal/core/src/registration/ecal_registration_sample_applier.h:56:
- bool IsSameProcess(const Registration::Sample& sample_);
+ bool IsSameProcess(const Registration::Sample& sample_) const;
sleep times for registration and unregistration will be fixed later for all tests if active registration/unregistration is working as expected
Description
Check process id for pub/sub, service, client separately in sample applier logic.