Skip to content

Commit

Permalink
fix: using response content for notice number extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-deri committed Dec 18, 2024
1 parent 65b4204 commit 92b5619
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private void generateRe(
.build();
}
if (this.mustPersistEventOnRE) {
setInMDCAfterClientResponse(new String(body));
setInMDCAfterClientResponse(responseContext != null ? responseContext.getPayload() : "");
reService.sendEvent(status, null, outcome, requestContext, responseContext);
deleteFromMDCAfterClientResponse();
}
Expand Down

0 comments on commit 92b5619

Please sign in to comment.