Skip to content

Commit

Permalink
Fix param args missing bug in fireExit of StatisticSlot (#2523)
Browse files Browse the repository at this point in the history
  • Loading branch information
howiekang authored Jan 5, 2022
1 parent 356111f commit 6f555d7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public void exit(Context context, ResourceWrapper resourceWrapper, int count, Ob
handler.onExit(context, resourceWrapper, count, args);
}

fireExit(context, resourceWrapper, count);
// fix bug https://github.com/alibaba/Sentinel/issues/2374
fireExit(context, resourceWrapper, count, args);
}

private void recordCompleteFor(Node node, int batchCount, long rt, Throwable error) {
Expand Down

0 comments on commit 6f555d7

Please sign in to comment.