[jboss-dev-forums] [Design of Messaging on JBoss (Messaging/JBoss)] - org.jboss.messaging.default-call-timeout
timfox
do-not-reply at jboss.com
Wed Mar 18 05:23:29 EDT 2009
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?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218942#4218942
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4218942
More information about the jboss-dev-forums
mailing list