Skip to content

Commit

Permalink
Send non-fatal bug report if no action was present when removed from …
Browse files Browse the repository at this point in the history
…the list of active actions in `ActionExecutionStatusReporter`.

PiperOrigin-RevId: 507471893
Change-Id: Iaba34aec394a72646fa79ae7ba36e4c14de33f38
  • Loading branch information
Googler authored and copybara-github committed Feb 6, 2023
1 parent 19aa72a commit e918288
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private void setStatus(ActionExecutionMetadata action, String message) {
public void remove(Action action) {
Pair<String, Long> status = actionStatus.remove(action);
if (status == null) {
BugReport.sendBugReport(
BugReport.sendNonFatalBugReport(
new IllegalStateException("Action not present: " + action.prettyPrint()));
}
}
Expand Down

0 comments on commit e918288

Please sign in to comment.