Skip to content

Commit

Permalink
Update igor-web/src/main/groovy/com/netflix/spinnaker/igor/jenkins/se…
Browse files Browse the repository at this point in the history
…rvice/JenkinsService.java

Co-authored-by: David Byron <82477955+dbyron-sf@users.noreply.github.com>
  • Loading branch information
SheetalAtre and dbyron-sf authored Sep 15, 2023
1 parent 6fc6e90 commit 65e59f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public JenkinsService(
CircuitBreakerConfig.custom()
.ignoreException(
(e) -> {
if (e instanceof SpinnakerServerException) {
if (e instanceof SpinnakerHttpException) {
SpinnakerServerException re = (SpinnakerServerException) e;
return re instanceof SpinnakerHttpException
&& ((SpinnakerHttpException) re).getResponseCode() == 404;
Expand Down

0 comments on commit 65e59f7

Please sign in to comment.