Re: Python client issue - hanging on obj.store()

2010-10-23 Thread Jonah Crawford
Disregard. I reinstalled the python client from source and that solved the issue. ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Python client issue - hanging on obj.store()

2010-10-23 Thread Jonah Crawford
I'm using the following code in the python interpreter to make a few tests of the python client: >>> import riak >>> client = riak.RiakClient('127.0.0.1', 8098) >>> mybucket = client.bucket('mybucket') >>> obj = mybucket.new('myobject') >>> obj.set_data({ 'foo': 1, 'bar': 2}) >>> obj.store() I