Skip to content

Commit

Permalink
Upgrade openfeign to 10.2.3 and feign-form to 3.8.0. (#185)
Browse files Browse the repository at this point in the history
Fixes gh-143.
  • Loading branch information
OlgaMaciaszek committed May 17, 2019
1 parent 35ec291 commit 15be711
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public Object decode(final Response response, Type type)

return extractor.extractData(new FeignResponseAdapter(response));
}
throw new DecodeException(
throw new DecodeException(response.status(),
"type is not an instance of Class or ParameterizedType: " + type);
}

Expand Down
4 changes: 2 additions & 2 deletions spring-cloud-openfeign-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<name>spring-cloud-openfeign-dependencies</name>
<description>Spring Cloud OpenFeign Dependencies</description>
<properties>
<feign.version>10.1.0</feign.version>
<feign-form.version>3.5.0</feign-form.version>
<feign.version>10.2.3</feign.version>
<feign-form.version>3.8.0</feign-form.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit 15be711

Please sign in to comment.