Upgrade RxNetty to 0.5.2-SNAPSHOT and Tomcat to 8.0.33

This commit is contained in:
Sebastien Deleuze
2016-04-07 16:04:39 +02:00
parent 04fae44163
commit 24a63f1d90
2 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ public class RxNettyClientHttpResponse implements ClientHttpResponse {
this.allocator = allocator;
this.response = response;
this.headers = new HttpHeaders();
this.response.headerIterator().forEachRemaining(e -> this.headers.set(e.getKey(), e.getValue()));
this.response.headerIterator().forEachRemaining(e -> this.headers.set(e.getKey().toString(), e.getValue().toString()));
this.cookies = initCookies(response);
}