https://bz.apache.org/bugzilla/show_bug.cgi?id=58151

--- Comment #16 from gregh <gregh3...@gmail.com> ---
Checking the source from 7.0.61 which works ok with 8.0.24 there are some 
differences in the run method, maybe these need checking???

removeFromPoller(info.socket); added
rv = mergeDescriptors(desc, rv); added

differences

// Process socket timeouts
if (getSoTimeout() > 0 && maintain++ > 1000 && pollerRunning) {
 // This works and uses only one timeout mechanism for everything, but the
 // non event poller might be a bit faster by using the old maintain.
 maintain = 0;
 maintain();
}

// Process socket timeouts
if (getSoTimeout() > 0 && pollerRunning) {
 // This works and uses only one timeout mechanism for everything, but the
 // non event poller might be a bit faster by using the old maintain.
 maintain();
}

Just an idea?

Cheers Greg

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to