You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2010/10/12 16:50:28 UTC

svn commit: r1021786 - /directory/apacheds/trunk/wrapper/src/main/java/org/apache/directory/server/ApacheDsTanukiWrapper.java

Author: pamarcelot
Date: Tue Oct 12 14:50:27 2010
New Revision: 1021786

URL: http://svn.apache.org/viewvc?rev=1021786&view=rev
Log:
Fixed build issue. ApacheDsService.init(...) was renamed as ApacheDsService.start(...) in a previous commit.

Modified:
    directory/apacheds/trunk/wrapper/src/main/java/org/apache/directory/server/ApacheDsTanukiWrapper.java

Modified: directory/apacheds/trunk/wrapper/src/main/java/org/apache/directory/server/ApacheDsTanukiWrapper.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/wrapper/src/main/java/org/apache/directory/server/ApacheDsTanukiWrapper.java?rev=1021786&r1=1021785&r2=1021786&view=diff
==============================================================================
--- directory/apacheds/trunk/wrapper/src/main/java/org/apache/directory/server/ApacheDsTanukiWrapper.java (original)
+++ directory/apacheds/trunk/wrapper/src/main/java/org/apache/directory/server/ApacheDsTanukiWrapper.java Tue Oct 12 14:50:27 2010
@@ -64,19 +64,16 @@ public class ApacheDsTanukiWrapper imple
             // Creating instance layouts from the argument
             InstanceLayout instanceLayout = new InstanceLayout( args[0] );
 
-            // Initializing the service
+            // Starting the service
             try
             {
-                service.init( instanceLayout );
+                service.start( instanceLayout );
             }
             catch ( Exception e )
             {
                 log.error( "Failed to start the service.", e );
                 System.exit( ExitCodes.START );
             }
-
-            // Starting the service
-            service.start();
         }
         else
         {