1 Reply Latest reply on Mar 18, 2009 11:34 AM by clebert.suconic

    org.jboss.messaging.default-call-timeout

    timfox

      Anyone know why this has appeared in ClientSessionFactoryImpl:

       static
       {
       long value;
       try
       {
       // This system-variable is used on tests.
       value = Long.parseLong(System.getProperty("org.jboss.messaging.default-call-timeout", "30000"));
       }
       catch (Exception e)
       {
      
       // Security Managemen is probably in use on the VM
       value = 30000;
       }
      
       DEFAULT_CALL_TIMEOUT = value;
       }
      


      Is it really the appropriate place to put it?