You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kork-retrofit/src/main/java/com/netflix/spinnaker/kork/retrofit/ErrorHandlingExecutorCallAdapterFactory.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ public Response<T> execute() {
153
153
}
154
154
} catch (JsonProcessingExceptionjpe) {
155
155
thrownewSpinnakerConversionException(
156
-
"Failed to process response body", jpe, delegate.request());
156
+
"Failed to process response body: " + jpe.getMessage(), jpe, delegate.request());
Copy file name to clipboardExpand all lines: kork-retrofit/src/test/java/com/netflix/spinnaker/kork/retrofit/exceptions/SpinnakerRetrofit2ErrorHandleTest.java
0 commit comments