The little python program below connects to a socket where nobody is listening. 
With zmq 2.0.10 it would halt after 100 messages. However with zmq 2.1.0 it 
keeps going all the way to 1000 messages. Why is this? I see this behavior both 
under Linux and Windows.
Koert

**********  test.py  **********
import zmq
context = zmq.Context()
socket = context.socket(zmq.PUSH)
socket.setsockopt(zmq.HWM, 100)
socket.connect("tcp://localhost:5051")
for i in range(1, 1000):
    socket.send('')
    print i
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Reply via email to