You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2009/04/02 19:07:54 UTC

svn commit: r761346 - /incubator/cassandra/trunk/src/org/apache/cassandra/service/CassandraDaemon.java

Author: jbellis
Date: Thu Apr  2 17:07:54 2009
New Revision: 761346

URL: http://svn.apache.org/viewvc?rev=761346&view=rev
Log:
jsvc actually wants the method to be named init, not load (contrary to what their docs state in at least one place)

Modified:
    incubator/cassandra/trunk/src/org/apache/cassandra/service/CassandraDaemon.java

Modified: incubator/cassandra/trunk/src/org/apache/cassandra/service/CassandraDaemon.java
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/src/org/apache/cassandra/service/CassandraDaemon.java?rev=761346&r1=761345&r2=761346&view=diff
==============================================================================
--- incubator/cassandra/trunk/src/org/apache/cassandra/service/CassandraDaemon.java (original)
+++ incubator/cassandra/trunk/src/org/apache/cassandra/service/CassandraDaemon.java Thu Apr  2 17:07:54 2009
@@ -75,7 +75,7 @@
     }
 
     /** hook for JSVC */
-    public void load(String[] args) throws IOException, TTransportException
+    public void init(String[] args) throws IOException, TTransportException
     {  
         setup();
     }