From 0d291d2d09dcf7e07ff0058e768106a17f671ed1 Mon Sep 17 00:00:00 2001 From: Kenneth Giusti Date: Thu, 21 Nov 2024 13:29:15 -0500 Subject: [PATCH] fixup: clarify special case for core endpoint links --- src/adaptors/amqp/amqp_adaptor.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/adaptors/amqp/amqp_adaptor.c b/src/adaptors/amqp/amqp_adaptor.c index 25fc16a59..d11c97bf4 100644 --- a/src/adaptors/amqp/amqp_adaptor.c +++ b/src/adaptors/amqp/amqp_adaptor.c @@ -770,7 +770,10 @@ static bool AMQP_rx_handler(qd_router_t *router, qd_link_t *link) break; } - // Handle deliveries destined to a core endpoint. + // Intercept deliveries destined to a core endpoint and hand them directly to the router core. Incoming links to a + // core endpoint address are "attach routed". This means the incoming link is bound directly to the core endpoint + // consumer when the first attach arrives. Afterwards deliveries arriving on this link are passed directly to the + // core endpoint rather than going through the delivery forwarding logic. // if (qdr_link_is_core_endpoint(rlink)) { log_link_message(conn, pn_link, msg);