Skip to content

Commit 811af48

Browse files
authored
Merge pull request #122 from tangb/patch-2
Fix bad copy/paste
2 parents 09ecbbe + bd6b00f commit 811af48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyre/zhelper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def zthread_fork(ctx, func, *args, **kwargs):
5757
b.setsockopt(zmq.RCVHWM, 100)
5858
b.setsockopt(zmq.SNDHWM, 100)
5959
b.setsockopt(zmq.SNDTIMEO, 5000)
60-
a.setsockopt(zmq.RCVTIMEO, 5000)
60+
b.setsockopt(zmq.RCVTIMEO, 5000)
6161
iface = "inproc://%s" % binascii.hexlify(os.urandom(8))
6262
a.bind(iface)
6363
b.connect(iface)

0 commit comments

Comments
 (0)