Oipo commented on a change in pull request #279:
URL: https://github.com/apache/celix/pull/279#discussion_r544444880
##########
File path: bundles/pubsub/pubsub_topology_manager/src/pubsub_topology_manager.c
##########
@@ -79,11 +79,11 @@ celix_status_t
pubsub_topologyManager_create(celix_bundle_context_t *context, ce
manager->loghelper = logHelper;
manager->verbose = celix_bundleContext_getPropertyAsBool(context,
PUBSUB_TOPOLOGY_MANAGER_VERBOSE_KEY, PUBSUB_TOPOLOGY_MANAGER_DEFAULT_VERBOSE);
- manager->handlingThreadSleepTime =
celix_bundleContext_getPropertyAsLong(context,
PUBSUB_TOPOLOGY_MANAGER_HANDLING_THREAD_SLEEPTIME_MS_KEY,
PSTM_PSA_HANDLING_DEFAULT_SLEEPTIME);
- unsigned handlingThreadSleepTime =
celix_bundleContext_getPropertyAsLong(context,
PUBSUB_TOPOLOGY_MANAGER_HANDLING_THREAD_SLEEPTIME_KEY, -1L);
+ unsigned handlingThreadSleepTime =
celix_bundleContext_getPropertyAsLong(context,
PUBSUB_TOPOLOGY_MANAGER_HANDLING_THREAD_SLEEPTIME_SECONDS_KEY,
PSTM_PSA_HANDLING_SLEEPTIME_IN_SECONDS);
if ( handlingThreadSleepTime >= 0 ) {
manager->handlingThreadSleepTime = handlingThreadSleepTime * 1000L;
}
+ manager->handlingThreadSleepTime =
celix_bundleContext_getPropertyAsLong(context,
PUBSUB_TOPOLOGY_MANAGER_HANDLING_THREAD_SLEEPTIME_MS_KEY,
manager->handlingThreadSleepTime);
Review comment:
:+1:
##########
File path: bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_topic_sender.h
##########
@@ -47,7 +47,9 @@ bool pubsub_tcpTopicSender_isStatic(pubsub_tcp_topic_sender_t
*sender);
bool pubsub_tcpTopicSender_isPassive(pubsub_tcp_topic_sender_t *sender);
long pubsub_tcpTopicSender_serializerSvcId(pubsub_tcp_topic_sender_t *sender);
long pubsub_tcpTopicSender_protocolSvcId(pubsub_tcp_topic_sender_t *sender);
+/* Note this functions are deprecated and not used */
Review comment:
:+1:
----------------------------------------------------------------
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]