From 5020ec12fbf9a7f692c10ef25f332de21840e06a Mon Sep 17 00:00:00 2001 From: Robert Gemmell Date: Thu, 3 Dec 2009 23:06:36 +0000 Subject: 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 --- .../main/java/org/apache/qpid/management/ui/ApplicationRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/management/eclipse-plugin/src') 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; -- cgit v1.2.1