[
https://issues.apache.org/jira/browse/CASSANDRA-3081?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13091847#comment-13091847
]
Hudson commented on CASSANDRA-3081:
-----------------------------------
Integrated in Cassandra #1049 (See
[https://builds.apache.org/job/Cassandra/1049/])
update CHANGES.txt for CASSANDRA-3081
Change cli to use hashes rather than array of hashes for strategy options
Patch by tjake; reviewed by xedin for CASSANDRA-3081
jake : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1162145
Files :
* /cassandra/trunk/CHANGES.txt
jake : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1162143
Files :
* /cassandra/trunk/src/java/org/apache/cassandra/cli/Cli.g
* /cassandra/trunk/src/java/org/apache/cassandra/cli/CliClient.java
* /cassandra/trunk/src/resources/org/apache/cassandra/cli/CliHelp.yaml
* /cassandra/trunk/test/unit/org/apache/cassandra/cli/CliTest.java
> 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: 0001-CASSANDRA-3081-fix-indentation.txt,
> 0002-CASSANDRA-3081-switch-to-hashes.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