Skip to content

Commit

Permalink
Fix erroneous clearing of active aggregate map in Aggregate mediator
Browse files Browse the repository at this point in the history
  • Loading branch information
SanojPunchihewa committed Dec 16, 2024
1 parent 16bd786 commit 039d193
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ public void setComponentStatisticsId(ArtifactHolder holder) {

private void handleException(Aggregate aggregate, String msg, Exception exception, MessageContext msgContext) {
aggregate.clear();
activeAggregates.clear();
activeAggregates.remove(aggregate.getCorrelation());
if (exception != null) {
super.handleException(msg, exception, msgContext);
} else {
Expand Down

0 comments on commit 039d193

Please sign in to comment.