Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-44548] Extend robustness fix to any runtime exception from F…
…lowExecution.onLoad.
  • Loading branch information
jglick committed Jul 27, 2017
1 parent bbec762 commit 60c5bc5
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 60c5bc5

Please sign in to comment.