summaryrefslogtreecommitdiff
path: root/qpid/java/management/eclipse-plugin
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
commit263e7cc1a0a15d512eef6f2d69464cc7e123e6c8 (patch)
treee4042db8b477645926a2119f94361e87f69b3060 /qpid/java/management/eclipse-plugin
parent7a899816354fb5d9187134478dd53071b6d525b9 (diff)
downloadqpid-python-263e7cc1a0a15d512eef6f2d69464cc7e123e6c8.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@886974 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/management/eclipse-plugin')
-rw-r--r--qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java
index 0f5f5267fd..c22cfc4f45 100644
--- a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/ApplicationRegistry.java
+++ b/qpid/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;