JETTY-1444 start threadpool before selector manager

This commit is contained in:
Greg Wilkins 2011-10-19 17:23:03 +11:00
parent 22f1d83f10
commit 4c89a79449
1 changed files with 1 additions and 1 deletions

View File

@ -245,9 +245,9 @@ public class SelectChannelConnector extends AbstractNIOConnector
_manager.setMaxIdleTime(getMaxIdleTime());
_manager.setLowResourcesConnections(getLowResourcesConnections());
_manager.setLowResourcesMaxIdleTime(getLowResourcesMaxIdleTime());
_manager.start();
super.doStart();
_manager.start();
}
/* ------------------------------------------------------------ */