Cassandra cli strategy options should be a hash not an array of hashes
----------------------------------------------------------------------
Key: CASSANDRA-3081
URL: https://issues.apache.org/jira/browse/CASSANDRA-3081
Project: Cassandra
Issue Type: Improvement
Components: Tools
Reporter: T Jake Luciani
Assignee: T Jake Luciani
Priority: Minor
Fix For: 1.0
Attachments: 3081.txt
Currently strategy options are specified as an array of hashes:
{code}
create keyspace Keyspace2
with placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy'
and strategy_options = [{replication_factor:4}];
{code}
this should be:
{code}
create keyspace Keyspace2
with placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy'
and strategy_options = {replication_factor:4};
{code}
Also, for column_metadata we need sub hashes for CASSANDRA-3078
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira