Author: eevans
Date: Thu Jul 22 01:19:11 2010
New Revision: 966472
URL: http://svn.apache.org/viewvc?rev=966472&view=rev
Log:
updated avro func tests for relocated .avpr
Patch by eevans
Modified:
cassandra/trunk/test/system/__init__.py
Modified: cassandra/trunk/test/system/__init__.py
URL:
http://svn.apache.org/viewvc/cassandra/trunk/test/system/__init__.py?rev=966472&r1=966471&r2=966472&view=diff
==============================================================================
--- cassandra/trunk/test/system/__init__.py (original)
+++ cassandra/trunk/test/system/__init__.py Thu Jul 22 01:19:11 2010
@@ -45,7 +45,7 @@ def get_thrift_client(host='127.0.0.1',
thrift_client = get_thrift_client()
def get_avro_client(host='127.0.0.1', port=9170):
- schema = os.path.join(root, 'interface', 'cassandra.avpr')
+ schema = os.path.join(root, 'interface/avro', 'cassandra.avpr')
proto = protocol.parse(open(schema).read())
client = ipc.HTTPTransceiver(host, port)
return ipc.Requestor(proto, client)