Skip to content

Commit

Permalink
removing added ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Roberts committed Sep 18, 2015
1 parent bea994c commit e45e8e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class SimpleHostRoutingFilter extends ZuulFilter {
String getQueryString() {
HttpServletRequest request = RequestContext.currentContext.getRequest();
String query = request.getQueryString()
return (query != null) ? "?${query}" : "";
return (query != null) ? query : "";
}

HttpHost getHttpHost() {
Expand Down

0 comments on commit e45e8e1

Please sign in to comment.