Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D16B28404 for ; Fri, 26 Aug 2011 14:54:52 +0000 (UTC) Received: (qmail 53422 invoked by uid 500); 26 Aug 2011 14:54:52 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 53216 invoked by uid 500); 26 Aug 2011 14:54:52 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 53197 invoked by uid 99); 26 Aug 2011 14:54:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Aug 2011 14:54:51 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Aug 2011 14:54:49 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 4BD13D18FA for ; Fri, 26 Aug 2011 14:54:29 +0000 (UTC) Date: Fri, 26 Aug 2011 14:54:29 +0000 (UTC) From: "T Jake Luciani (JIRA)" To: commits@cassandra.apache.org Message-ID: <291427210.17670.1314370469307.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <550388623.17528.1314367409787.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (CASSANDRA-3081) Cassandra cli strategy options should be a hash not an array of hashes MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-3081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] T Jake Luciani updated CASSANDRA-3081: -------------------------------------- Attachment: 0002-CASSANDRA-3081-switch-to-hashes.txt 0001-CASSANDRA-3081-fix-indentation.txt > 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