Commit 14a31cd5 by Ryan Baxter

Switched media type to application/json

parent 8a7df36d
...@@ -1652,7 +1652,7 @@ class MyFallbackProvider implements ZuulFallbackProvider { ...@@ -1652,7 +1652,7 @@ class MyFallbackProvider implements ZuulFallbackProvider {
@Override @Override
public HttpHeaders getHeaders() { public HttpHeaders getHeaders() {
HttpHeaders headers = new HttpHeaders(); HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.TEXT_HTML); headers.setContentType(MediaType.APPLICATION_JSON);
return headers; return headers;
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment