Skip to content

Commit

Permalink
Merge pull request #2267 from DedunuKarunarathne/master
Browse files Browse the repository at this point in the history
Fix NO_KEEPALIVE property not working issue with call blocking = true
  • Loading branch information
DedunuKarunarathne authored Dec 19, 2024
2 parents 193bae7 + df82a8e commit 0405853
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,8 @@ public void send(EndpointDefinition endpointDefinition, MessageContext synapseIn
axisInMsgCtx.getProperty(SynapseConstants.NO_KEEPALIVE));
axisOutMsgCtx.setProperty(SynapseConstants.NO_DEFAULT_CONTENT_TYPE,
axisInMsgCtx.getProperty(SynapseConstants.NO_DEFAULT_CONTENT_TYPE));
axisOutMsgCtx.setProperty(SynapseConstants.NO_KEEPALIVE,
axisInMsgCtx.getProperty(SynapseConstants.NO_KEEPALIVE));
// Fill MessageContext
BlockingMsgSenderUtils.fillMessageContext(endpointDefinition, axisOutMsgCtx, synapseInMsgCtx);
if (JsonUtil.hasAJsonPayload(axisInMsgCtx)) {
Expand Down

0 comments on commit 0405853

Please sign in to comment.