From b75c23204d2bb767ab141da0bc59dc4ccf904c78 Mon Sep 17 00:00:00 2001 From: Chris Morgan <17009318+cjwmorgan-sol@users.noreply.github.com> Date: Fri, 26 Apr 2024 10:19:28 -0400 Subject: [PATCH] SOL-117452: Fixed subscription flags on unsubcribe to no longer leak extra reply to topic subscription for publisher Signed-off-by: Chris Morgan <17009318+cjwmorgan-sol@users.noreply.github.com> --- internal/ccsmp/ccsmp_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ccsmp/ccsmp_helper.c b/internal/ccsmp/ccsmp_helper.c index b414b78..35ba65c 100644 --- a/internal/ccsmp/ccsmp_helper.c +++ b/internal/ccsmp/ccsmp_helper.c @@ -67,7 +67,7 @@ _SessionTopicSubscribeWithFlags( solClient_opaqueSession_pt opaqueSession_p, dispatchInfo.user_p = dispatchId_p; dispatchInfo.rfu_p = NULL; return solClient_session_topicSubscribeWithDispatch ( opaqueSession_p, - SOLCLIENT_SUBSCRIBE_FLAGS_REQUEST_CONFIRM, + flags, topicSubscription_p, &dispatchInfo, correlationTag_p);