From scm-return-23649-apmail-geronimo-scm-archive=geronimo.apache.org@geronimo.apache.org Tue Nov 20 22:25:18 2007 Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 94880 invoked from network); 20 Nov 2007 22:25:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Nov 2007 22:25:17 -0000 Received: (qmail 40569 invoked by uid 500); 20 Nov 2007 22:25:04 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 40528 invoked by uid 500); 20 Nov 2007 22:25:04 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 40491 invoked by uid 99); 20 Nov 2007 22:25:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Nov 2007 14:25:04 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Nov 2007 22:25:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 887BE1A9832; Tue, 20 Nov 2007 14:24:55 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r596849 - /geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java Date: Tue, 20 Nov 2007 22:24:55 -0000 To: scm@geronimo.apache.org From: gawor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071120222455.887BE1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gawor Date: Tue Nov 20 14:24:54 2007 New Revision: 596849 URL: http://svn.apache.org/viewvc?rev=596849&view=rev Log: create a deamon thread so that jvm can shutdown. deployment client shouldn't hang anymore when RuntimeException or Error is raised Modified: geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java Modified: geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java?rev=596849&r1=596848&r2=596849&view=diff ============================================================================== --- geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java (original) +++ geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/LocalAttributeManager.java Tue Nov 20 14:24:54 2007 @@ -483,7 +483,7 @@ public synchronized void doStart() throws Exception { load(); if (!readOnly) { - timer = new Timer(); + timer = new Timer(true); } log.debug("Started LocalAttributeManager with data on " + serverOverride.getConfigurations().size() + " configurations"); }