Merge pull request #2689 from metamx/fix-broadcast-lockup

fix servlet startup sequence, fixes #2681
This commit is contained in:
Charles Allen 2016-03-19 09:38:31 -07:00
commit 527b728f3e
1 changed files with 13 additions and 1 deletions

View File

@ -120,6 +120,8 @@ public class AsyncQueryForwardingServlet extends AsyncProxyServlet
@Override
public void init() throws ServletException
{
super.init();
// separate client with more aggressive connection timeouts
// to prevent cancellations requests from blocking queries
broadcastClient = httpClientProvider.get();
@ -131,7 +133,17 @@ public class AsyncQueryForwardingServlet extends AsyncProxyServlet
} catch(Exception e) {
throw new ServletException(e);
}
super.init();
}
@Override
public void destroy()
{
super.destroy();
try {
broadcastClient.stop();
} catch(Exception e) {
log.warn(e, "Error stopping servlet");
}
}
@Override