Skip to content

Commit

Permalink
SOL-115460: fixed issue where native correlation id reply message che…
Browse files Browse the repository at this point in the history
…ck would forward messages to go publisher regardless of prefix

Signed-off-by: Chris Morgan <[email protected]>
  • Loading branch information
cjwmorgan-sol committed Apr 5, 2024
1 parent ac5e423 commit 4bca021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ccsmp/ccsmp_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ solClientgo_msg_isRequestReponseMsg(solClient_opaqueMsg_pt msg_p, char **correla
return rc;
}
if (!SOLCLIENTGO_HAS_REPLY_CORRELATION_ID_PREFIX(correlationId)) {
return rc;
return SOLCLIENT_FAIL;
}
// This string is a direct read from the message backing memory and shoud be copied into go memory for persistent use.
*correlationId_p = (char *)correlationId;
Expand Down

0 comments on commit 4bca021

Please sign in to comment.