Skip to content

Commit

Permalink
was never setting cassandraStarted to true causing unit tests to try
Browse files Browse the repository at this point in the history
and start server again.  this is a problem in eclipse (or possibly
other IDEs) but not using maven cmd line "mvn clean package"
  • Loading branch information
btoddb committed May 19, 2011
1 parent 33b925f commit 6ffa130
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public static void startCassandraInstance(String pathToDataDir) throws TTranspor
} catch (ConfigurationException ce) {
throw new RuntimeException(ce);
}

cassandraStarted = true;
}

public static void createKeyspace(Cluster cluster, String name, String strategy, int replicationFactor,
Expand Down

0 comments on commit 6ffa130

Please sign in to comment.