Skip to content

Commit

Permalink
Propagate InterruptedException from another place where it's possible.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 295762405
  • Loading branch information
Googler authored and copybara-github committed Feb 18, 2020
1 parent 5a62c9f commit 93e269e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ Pair<NestedSet<TaggedEvents>, NestedSet<Postable>> buildAndReportEventsAndPostab
eventBuilder.addTransitive(ValueWithMetadata.getEvents(value));
postBuilder.addTransitive(ValueWithMetadata.getPosts(value));
}
NestedSet<TaggedEvents> taggedEvents = eventBuilder.build();
NestedSet<Postable> postables = postBuilder.build();
NestedSet<TaggedEvents> taggedEvents = eventBuilder.buildInterruptibly();
NestedSet<Postable> postables = postBuilder.buildInterruptibly();
evaluatorContext.getReplayingNestedSetEventVisitor().visit(taggedEvents);
evaluatorContext.getReplayingNestedSetPostableVisitor().visit(postables);
return Pair.of(taggedEvents, postables);
Expand Down

0 comments on commit 93e269e

Please sign in to comment.