summaryrefslogtreecommitdiff
path: root/java/management/eclipse-plugin/src
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2009-12-03 23:06:36 +0000
committerRobert Gemmell <robbie@apache.org>2009-12-03 23:06:36 +0000
commit5020ec12fbf9a7f692c10ef25f332de21840e06a (patch)
tree4793cc472107ec31a76a86fd48afcaa6e9dba30d /java/management/eclipse-plugin/src
parentc9703c328a4cc71d8d65388a66ba5419ed551dc5 (diff)
downloadqpid-python-5020ec12fbf9a7f692c10ef25f332de21840e06a.tar.gz
QPID-2152: Update the timeout process so as not to return a null, and close any orphaned connections. Increase default timeout to 15sec.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@886974 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/management/eclipse-plugin/src')
-rw-r--r--java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java b/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java
index 0f5f5267fd..c22cfc4f45 100644
--- a/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java
+++ b/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java
@@ -43,7 +43,7 @@ public abstract class ApplicationRegistry
private static ImageRegistry imageRegistry = new ImageRegistry();
private static FontRegistry fontRegistry = new FontRegistry();
public static final boolean debug = Boolean.getBoolean("eclipse.consoleLog");
- public static final long timeout = Long.parseLong(System.getProperty("timeout", "5000"));
+ public static final long timeout = Long.parseLong(System.getProperty("timeout", "15000"));
//max supported broker management interface supported by this release of the management console
public static final int SUPPORTED_QPID_JMX_API_MAJOR_VERSION = 1;