Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 55732b8

Browse files
committed
Additional fixes for Issue 0rpc#41
Issue 0rpc#41 was about an `zmq.core.error.ZMQError: Invalid argument` error when trying to connect to `tcp://*:4242`, however I ran into the same bug in Ubuntu 13.04 connecting to `tcp://:4242`.
1 parent 57c1d9e commit 55732b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,11 @@ Let's save this code to *cooler.py* and run it::
186186

187187
Now, in another terminal, let's try connecting to our awesome zeroservice::
188188

189-
$ zerorpc -j tcp://:4242 add_42 1
189+
$ zerorpc -j tcp://localhost:4242 add_42 1
190190
43
191-
$ zerorpc tcp://:4242 add_man 'I own a mint-condition Volkswagen Golf'
191+
$ zerorpc tcp://localhost:4242 add_man 'I own a mint-condition Volkswagen Golf'
192192
"I own a mint-condition Volkswagen Golf, man!"
193-
$ zerorpc tcp://:4242 boat 'I own a mint-condition Volkswagen Golf, man!'
193+
$ zerorpc tcp://localhost:4242 boat 'I own a mint-condition Volkswagen Golf, man!'
194194
"I'm on a boat!"
195195

196196

0 commit comments

Comments
 (0)