mirror of https://github.com/apache/druid.git
fix missing return statement
This commit is contained in:
parent
f06a85ec26
commit
b2419b1530
|
@ -216,6 +216,7 @@ public class QueryResource
|
|||
catch (Exception e) {
|
||||
// make sure to close yieder if anything happened before starting to serialize the response.
|
||||
yielder.close();
|
||||
throw Throwables.propagate(e);
|
||||
}
|
||||
finally {
|
||||
// do not close yielder here, since we do not want to close the yielder prior to
|
||||
|
|
Loading…
Reference in New Issue