From 13adb810dd946d9609db15f85295f8440623b0b9 Mon Sep 17 00:00:00 2001 From: fawce Date: Tue, 14 Feb 2012 13:43:57 -0500 Subject: [PATCH] found stray send without a noblock --- zipline/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/core.py b/zipline/core.py index dc1e4748..7e9b9339 100644 --- a/zipline/core.py +++ b/zipline/core.py @@ -472,7 +472,7 @@ class TransformsMerge(object): self.data_buffer.drain() #signal to client that we're done - self.result_socket.send("DONE") + self.result_socket.send("DONE", zmq.NOBLOCK)