Skip to content

Commit

Permalink
Merge pull request #59 from jglick/NPE-JENKINS-44548
Browse files Browse the repository at this point in the history
[JENKINS-44548] Extend robustness fix to any runtime exception from FlowExecution.onLoad
  • Loading branch information
svanoort committed Jul 31, 2017
2 parents bbec762 + 60c5bc5 commit 58a884d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -610,7 +610,7 @@ private String key() {
if (execution != null) {
try {
execution.onLoad(new Owner(this));
} catch (IOException x) {
} catch (Exception x) {
LOGGER.log(Level.WARNING, null, x);
execution = null; // probably too broken to use
}
Expand Down

0 comments on commit 58a884d

Please sign in to comment.