Oipo commented on a change in pull request #181: Updated ZMQ implementation to
use NULL if scope is not set. Only when…
URL: https://github.com/apache/celix/pull/181#discussion_r400769596
##########
File path: bundles/pubsub/pubsub_discovery/src/pubsub_discovery_impl.c
##########
@@ -414,7 +414,7 @@ celix_status_t pubsub_discovery_announceEndpoint(void
*handle, const celix_prope
clock_gettime(CLOCK_MONOTONIC, &entry->createTime);
entry->isSet = false;
entry->properties = celix_properties_copy(endpoint);
- asprintf(&entry->key, "/pubsub/%s/%s/%s/%s", config, scope, topic,
uuid);
+ asprintf(&entry->key, "/pubsub/%s/%s/%s/%s", config, scope == NULL ?
"default" : scope, topic, uuid);
Review comment:
It's probably better to use PUBSUB_SCOPE_DEFAULT instead of "default" here.
Might need refactoring to move the commented out definition from subscriber.h
to here
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services