Skip to content

Commit

Permalink
chore(dependencies): Autobump orcaVersion (#996)
Browse files Browse the repository at this point in the history
* chore(dependencies): Autobump orcaVersion

* fix(core/test): keep up with SpinnakerNetworkException constructor changes

from spinnaker/kork#1110

---------

Co-authored-by: root <root@37e47cedb6bb>
Co-authored-by: David Byron <dbyron@salesforce.com>
  • Loading branch information
3 people committed Oct 30, 2023
1 parent 880028f commit 4bac608
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
orcaVersion=8.38.0
orcaVersion=8.39.0
org.gradle.parallel=true
spinnakerGradleVersion=8.31.0
targetJava11=true
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ public void retriesNetworkErrorTillMaxAttemptsAndThrowsException() throws IOExce
any(CanaryConfig.class),
any(CanaryMetricConfig.class),
any(CanaryScope.class)))
.thenThrow(new SpinnakerNetworkException(new SocketTimeoutException()));
.thenThrow(
new SpinnakerNetworkException(
RetrofitError.networkError("http://some-url", new SocketTimeoutException())));

assertThatThrownBy(
() ->
Expand Down

0 comments on commit 4bac608

Please sign in to comment.