Skip to content

Commit

Permalink
fixup: clarify special case for core endpoint links
Browse files Browse the repository at this point in the history
  • Loading branch information
kgiusti committed Nov 21, 2024
1 parent c0340e2 commit 0d291d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/adaptors/amqp/amqp_adaptor.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0d291d2

Please sign in to comment.