Skip to content

Commit

Permalink
fix(JenkinsService): fix to add SpinnakerServerException blocks which…
Browse files Browse the repository at this point in the history
… were missed in previous commit
  • Loading branch information
SheetalAtre committed Sep 19, 2023
1 parent 2ae8dec commit 600c58a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ private ScmDetails getGitDetails(String jobName, Integer buildNumber) {
log.warn(
"Unable to deserialize git details for build " + buildNumber + " of " + jobName, e);
return null;
} catch (SpinnakerServerException e) {
throw e;
}
},
10,
Expand All @@ -240,6 +242,8 @@ public QueuedJob queuedBuild(String master, int item) {
String.format("Queued job '%s' not found for master '%s'.", item, master));
}
throw e;
} catch (SpinnakerServerException e) {
throw e;
}
}

Expand Down

0 comments on commit 600c58a

Please sign in to comment.