You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2010/06/22 23:28:53 UTC

svn commit: r957037 - /cassandra/trunk/contrib/py_stress/stress.py

Author: jbellis
Date: Tue Jun 22 21:28:53 2010
New Revision: 957037

URL: http://svn.apache.org/viewvc?rev=957037&view=rev
Log:
fix stress.py for new thrift parameter order.  patch by jbellis

Modified:
    cassandra/trunk/contrib/py_stress/stress.py

Modified: cassandra/trunk/contrib/py_stress/stress.py
URL: http://svn.apache.org/viewvc/cassandra/trunk/contrib/py_stress/stress.py?rev=957037&r1=957036&r2=957037&view=diff
==============================================================================
--- cassandra/trunk/contrib/py_stress/stress.py (original)
+++ cassandra/trunk/contrib/py_stress/stress.py Tue Jun 22 21:28:53 2010
@@ -142,7 +142,7 @@ def get_client(host='127.0.0.1', port=91
 
 def make_keyspaces():
     cfams = [CfDef('Keyspace1', 'Standard1'),
-             CfDef('Keyspace1', 'Super1', 'Super', 'BytesType', 'BytesType')]
+             CfDef('Keyspace1', 'Super1', 'Super')]
     keyspace = KsDef('Keyspace1', 'org.apache.cassandra.locator.RackUnawareStrategy', 1, cfams)
     client = get_client(nodes[0], options.port, options.framed)
     client.transport.open()