Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E4F2598D9 for ; Mon, 3 Oct 2011 17:07:13 +0000 (UTC) Received: (qmail 13987 invoked by uid 500); 3 Oct 2011 17:07:13 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 13936 invoked by uid 500); 3 Oct 2011 17:07:13 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 13929 invoked by uid 99); 3 Oct 2011 17:07:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Oct 2011 17:07:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Oct 2011 17:07:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B037023889B3 for ; Mon, 3 Oct 2011 17:06:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1178458 - /directory/studio/trunk/plugins/ldapservers/src/main/java/org/apache/directory/studio/ldapservers/jobs/StopLdapServerRunnable.java Date: Mon, 03 Oct 2011 17:06:52 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111003170652.B037023889B3@eris.apache.org> Author: pamarcelot Date: Mon Oct 3 17:06:52 2011 New Revision: 1178458 URL: http://svn.apache.org/viewvc?rev=1178458&view=rev Log: Removed 10 second wait timer. Modified: directory/studio/trunk/plugins/ldapservers/src/main/java/org/apache/directory/studio/ldapservers/jobs/StopLdapServerRunnable.java Modified: directory/studio/trunk/plugins/ldapservers/src/main/java/org/apache/directory/studio/ldapservers/jobs/StopLdapServerRunnable.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/ldapservers/src/main/java/org/apache/directory/studio/ldapservers/jobs/StopLdapServerRunnable.java?rev=1178458&r1=1178457&r2=1178458&view=diff ============================================================================== --- directory/studio/trunk/plugins/ldapservers/src/main/java/org/apache/directory/studio/ldapservers/jobs/StopLdapServerRunnable.java (original) +++ directory/studio/trunk/plugins/ldapservers/src/main/java/org/apache/directory/studio/ldapservers/jobs/StopLdapServerRunnable.java Mon Oct 3 17:06:52 2011 @@ -90,16 +90,6 @@ public class StopLdapServerRunnable impl { // Setting the status on the server to 'stopping' server.setStatus( LdapServerStatus.STOPPING ); - - try - { - Thread.sleep( 10000 ); - } - catch ( InterruptedException e1 ) - { - // TODO Auto-generated catch block - e1.printStackTrace(); - } // Starting a new watchdog thread StopLdapServerWatchDogThread.runNewWatchDogThread( server );