Skip to content

Commit

Permalink
HttpRequest.replaceUri now includes the entity when building the new …
Browse files Browse the repository at this point in the history
…instance
  • Loading branch information
willblackie committed Jul 18, 2014
1 parent b35e376 commit 28ecd73
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ public HttpRequest replaceUri(URI newURI) {
.queryParams(this.queryParams)
.setRetriable(this.isRetriable())
.loadBalancerKey(this.getLoadBalancerKey())
.verb(this.getVerb()).build();
.verb(this.getVerb())
.entity(this.entity)
.build();
}
}

0 comments on commit 28ecd73

Please sign in to comment.