Re: Trying to connect to riak from python client

2012-07-26 Thread Sean Cribbs
David, Make sure you set the transport class properly when connecting. 8087 is the default port for Protocol Buffers, whereas the default transport in the client is HTTP. Something like this might work: client = riak.RiakClient(host='127.0.0.1', port=8087, transport_class=riak.transports.pbc.Ria

Trying to connect to riak from python client

2012-07-26 Thread David Montgomery
I have riak installed on my local machine. I am not trying to do a cluster simulation on my local machine, a simple node node locally is fine. when I do a service ping I get a pong. When I run the below python client it just hangs. Below is the code. So...rather confused on where to go at this