mirror of https://github.com/apache/druid.git
log the exception on failure to send query response (#4179)
This commit is contained in:
parent
97ddb38d75
commit
4d3745d6c9
|
@ -267,6 +267,7 @@ public class QueryResource implements QueryCountStatsProvider
|
|||
success = true;
|
||||
} catch (Exception ex) {
|
||||
exceptionStr = ex.toString();
|
||||
log.error(ex, "Unable to send query response.");
|
||||
throw Throwables.propagate(ex);
|
||||
} finally {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue