Fixed
Details
Assignee
Gaston DombiakGaston DombiakReporter
LGLGComponents
Fix versions
Affects versions
Priority
Minor
Details
Details
Assignee
Gaston Dombiak
Gaston DombiakReporter
LG
LGComponents
Fix versions
Affects versions
Priority
Created May 16, 2007 at 5:02 AM
Updated October 3, 2007 at 3:21 AM
Resolved October 3, 2007 at 3:21 AM
see http://www.igniterealtime.org/forum/thread.jspa?threadID=25943 and verify this patch:
"In ClientConnectionHandler.java idle detection is done as follow:
session.setIdleTime(IdleStatus.BOTH_IDLE, idleTime);
which cause the session to be idled only if nothing is written AND nothing is
read.
I've replaced this line with:
session.setIdleTime(IdleStatus.READER_IDLE, idleTime);
Everything is working fine for me now."