Hi,
When sending requests to Tomcat during the startup phase, I got a NPE in
the AprEndpoint run method, line 1495:
getPoller().add(socket);
This can happen because in the start method, the pollers are initialized
after the acceptor threads already have been started so that the
getPoller() call can either run into a NPE itself (if the pollers array
is not yet initialized) or return null (if pollers[pollerRoundRobin] is
not yet initialized.
Thus, I think the error can easily be prevented by starting the
acceptors after initializing the pollers.
Regards,
Matthias
---------------------------------------------------------------------
To start a new topic, e-mail: users@(protected)
To unsubscribe, e-mail: users-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)