Re: Fixed TimeToLive of JavaFlow Continuations

2007-06-12 Thread Torsten Curdt
Fair enough :) On 12.06.2007, at 12:19, Christofer Dutz wrote: Well the fix works great ;) simply change Line 52 of org.apache.cocoon.components.flow.java.JavaInterpreter from private int timeToLive = 60; to private int timeToLive = 0; makes the WebContinuationManager use the defaultTi

Re: Fixed TimeToLive of JavaFlow Continuations

2007-06-12 Thread Christofer Dutz
Well the fix works great ;) simply change Line 52 of org.apache.cocoon.components.flow.java.JavaInterpreter from private int timeToLive = 60; to private int timeToLive = 0; makes the WebContinuationManager use the defaultTimeToLive configured in the sitemap ... don't really know why the t

Re: Fixed TimeToLive of JavaFlow Continuations

2007-06-12 Thread Torsten Curdt
This has been brought up already a couple of times ...go for it cheers -- Torsten On 12.06.2007, at 11:05, Christofer Dutz wrote: Hi, I was currently analysing some of my customers bug reports and in the course of this had to find out that there is a small "bug" in the JavaFlowInterpreter

Fixed TimeToLive of JavaFlow Continuations

2007-06-12 Thread Christofer Dutz
Hi, I was currently analysing some of my customers bug reports and in the course of this had to find out that there is a small "bug" in the JavaFlowInterpreter code. The parameter timeToLive is fixed to 60 with no possibility of changing this. If I should supply a patch, I willl gladly do