dawidwys commented on a change in pull request #15313:
URL: https://github.com/apache/flink/pull/15313#discussion_r603317077
##########
File path:
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/checkpointing/SingleCheckpointBarrierHandler.java
##########
@@ -226,15 +226,19 @@ public void processBarrier(CheckpointBarrier barrier,
InputChannelInfo channelIn
currentState = currentState.barrierReceived(context, channelInfo,
barrier);
} catch (CheckpointException e) {
abortInternal(barrier.getId(), e);
+ } catch (RuntimeException | IOException e) {
+ throw e;
+ } catch (Exception e) {
+ throw new IOException(e);
}
Review comment:
nice, did not know about this function!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]