Skip to content

Commit

Permalink
Merge pull request #122 from tangb/patch-2
Browse files Browse the repository at this point in the history
Fix bad copy/paste
  • Loading branch information
keent authored Sep 12, 2017
2 parents 09ecbbe + bd6b00f commit 811af48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyre/zhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def zthread_fork(ctx, func, *args, **kwargs):
b.setsockopt(zmq.RCVHWM, 100)
b.setsockopt(zmq.SNDHWM, 100)
b.setsockopt(zmq.SNDTIMEO, 5000)
a.setsockopt(zmq.RCVTIMEO, 5000)
b.setsockopt(zmq.RCVTIMEO, 5000)
iface = "inproc://%s" % binascii.hexlify(os.urandom(8))
a.bind(iface)
b.connect(iface)
Expand Down

0 comments on commit 811af48

Please sign in to comment.