mirror of https://github.com/apache/druid.git
fix unnecessary error messages
This commit is contained in:
parent
088e2c5af3
commit
25a5a0fd33
|
@ -72,8 +72,6 @@ public class AsyncQueryForwardingServlet extends AsyncProxyServlet
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
response.flushBuffer();
|
response.flushBuffer();
|
||||||
|
|
||||||
throw new IOException(exception);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private final ObjectMapper jsonMapper;
|
private final ObjectMapper jsonMapper;
|
||||||
|
@ -132,15 +130,17 @@ public class AsyncQueryForwardingServlet extends AsyncProxyServlet
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
|
response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
|
||||||
|
response.setContentType(QueryResource.APPLICATION_JSON);
|
||||||
objectMapper.writeValue(
|
objectMapper.writeValue(
|
||||||
response.getOutputStream(),
|
response.getOutputStream(),
|
||||||
ImmutableMap.of("error", errorMessage)
|
ImmutableMap.of("error", errorMessage)
|
||||||
);
|
);
|
||||||
|
|
||||||
throw e;
|
return;
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
handleException(response, objectMapper, e);
|
handleException(response, objectMapper, e);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue