From bca756f88ce36ab3c7297c7bc4d2cab9009b09fe Mon Sep 17 00:00:00 2001 From: Charles Chance Date: Wed, 25 Jul 2018 13:58:41 +0100 Subject: [PATCH] dmq: include non-active nodes when requesting initial node list --- src/modules/dmq/notification_peer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/dmq/notification_peer.c b/src/modules/dmq/notification_peer.c index c8e659c7213..c1deb80536e 100644 --- a/src/modules/dmq/notification_peer.c +++ b/src/modules/dmq/notification_peer.c @@ -570,8 +570,8 @@ int request_nodelist(dmq_node_t *node, int forward) LM_ERR("no notification body\n"); return -1; } - ret = bcast_dmq_message(dmq_notification_peer, body, NULL, - ¬ification_callback, forward, ¬ification_content_type); + ret = bcast_dmq_message1(dmq_notification_peer, body, NULL, + ¬ification_callback, forward, ¬ification_content_type, 1); pkg_free(body->s); pkg_free(body); return ret;