users@grizzly.java.net

not sure about this bug

From: Richard Corsale <igf1_at_yahoo.com>
Date: Tue, 18 Nov 2008 19:57:36 -0800 (PST)

Hi All,

while I was working on GF 2. I noticed something strange, but it must have been noted before...

I have a CometContext in a singleton, If i set the timeout to -1 it never detects dissconnects. so I have set it to 30 Mins and it works as advertisd :). is this a known Bug?

----------------------------------------------------------------------
static CometContext cc;
      
      public void addHandler(CometHandler ch){
          cc.setExpirationDelay(60000 * 30);
          cc.addCometHandler(ch);
         
      }