Skip to content

Commit

Permalink
Merge pull request #54 from jglick/FlowNode.persistSafe
Browse files Browse the repository at this point in the history
Handle also RuntimeException from save()
  • Loading branch information
svanoort committed Apr 11, 2018
2 parents 0913091 + fef9f85 commit aa40e78
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -453,7 +453,7 @@ public void save() throws IOException {
private void persistSafe() {
try {
save();
} catch (IOException e) {
} catch (Exception e) {
LOGGER.log(Level.WARNING, "failed to save actions for FlowNode id=" + this.id, e);
}
}
Expand Down

0 comments on commit aa40e78

Please sign in to comment.