From 8cb42364eb6363a21afa5bf71129ac0d953116a5 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Thu, 29 Jul 2010 21:17:07 +0000 Subject: [PATCH] Fix range slices of supercolumns in stress.py git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@980582 13f79535-47bb-0310-9956-ffa450edef68 --- contrib/py_stress/stress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/py_stress/stress.py b/contrib/py_stress/stress.py index ae0c9852fa..f3a8fdf0e0 100644 --- a/contrib/py_stress/stress.py +++ b/contrib/py_stress/stress.py @@ -266,7 +266,7 @@ class RangeSlicer(Operation): keyrange = KeyRange(fmt % current, fmt % last, count = options.rangecount) res = [] for j in xrange(supers_per_key): - parent = ColumnParent('Super1', chr(ord('A') + j)) + parent = ColumnParent('Super1', 'S' + str(j)) begin = time.time() try: res = self.cclient.get_range_slices(parent, p, keyrange, consistency)