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;
}
It was a temporary hack as I stated here. I was investigating the reason for a few timeouts on hudson.
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=151985
and I have removed it already.