YARN-6797. TimelineWriter does not fully consume the POST response. Contributed by Jason Lowe

This commit is contained in:
Jason Lowe 2017-07-12 15:52:56 -05:00
parent b628d0da51
commit 655110393b
1 changed files with 6 additions and 2 deletions

View File

@ -152,16 +152,20 @@ public abstract class TimelineWriter implements Flushable {
if (LOG.isDebugEnabled()) { if (LOG.isDebugEnabled()) {
LOG.debug("POST to " + resURI); LOG.debug("POST to " + resURI);
} }
return webResource.accept(MediaType.APPLICATION_JSON) ClientResponse r = webResource.accept(MediaType.APPLICATION_JSON)
.type(MediaType.APPLICATION_JSON) .type(MediaType.APPLICATION_JSON)
.post(ClientResponse.class, object); .post(ClientResponse.class, object);
r.bufferEntity();
return r;
} else if (path.equals("domain")) { } else if (path.equals("domain")) {
if (LOG.isDebugEnabled()) { if (LOG.isDebugEnabled()) {
LOG.debug("PUT to " + resURI +"/" + path); LOG.debug("PUT to " + resURI +"/" + path);
} }
return webResource.path(path).accept(MediaType.APPLICATION_JSON) ClientResponse r = webResource.path(path).accept(MediaType.APPLICATION_JSON)
.type(MediaType.APPLICATION_JSON) .type(MediaType.APPLICATION_JSON)
.put(ClientResponse.class, object); .put(ClientResponse.class, object);
r.bufferEntity();
return r;
} else { } else {
throw new YarnRuntimeException("Unknown resource type"); throw new YarnRuntimeException("Unknown resource type");
} }