-
Bug
-
Resolution: Done
-
Major
-
2.5
-
None
-
Low
JChannel.startFlush() does not pass down the timeout in the Suspend event.
This causes a fixed timeout of 4000 to be used on flushes:
Flush.java:
case Event.SUSPEND:
return startFlush(evt, 4000, 5, false);
The SUSPEND event may or may not take a View as the arg, so, something will have to be done to pass the timeout down. Perhaps a Map as the event arg with "timeout" and "view" as possible keys?