Repository: qpid-dispatch Updated Branches: refs/heads/master a357dfa3e -> d6544153e
DISPATCH-1146 - Treat edge links originating from within the core as routed-links to prevent AMQP_rx_handler from rejecting them. Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/d6544153 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/d6544153 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/d6544153 Branch: refs/heads/master Commit: d6544153eaeffe860f3f1e7d12ee5e67ca0007f0 Parents: a357dfa Author: Ted Ross <[email protected]> Authored: Mon Oct 15 13:55:49 2018 -0400 Committer: Ted Ross <[email protected]> Committed: Mon Oct 15 13:55:49 2018 -0400 ---------------------------------------------------------------------- src/router_core/connections.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/d6544153/src/router_core/connections.c ---------------------------------------------------------------------- diff --git a/src/router_core/connections.c b/src/router_core/connections.c index c08da13..db9c268 100644 --- a/src/router_core/connections.c +++ b/src/router_core/connections.c @@ -404,7 +404,7 @@ bool qdr_link_is_anonymous(const qdr_link_t *link) bool qdr_link_is_routed(const qdr_link_t *link) { - return link->connected_link != 0; + return link->connected_link != 0 || link->core_endpoint != 0; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
