summaryrefslogtreecommitdiff
path: root/gr-zeromq/examples/python/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-zeromq/examples/python/client.py')
-rwxr-xr-xgr-zeromq/examples/python/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-zeromq/examples/python/client.py b/gr-zeromq/examples/python/client.py
index 7663f9a056..a63a77aa0d 100755
--- a/gr-zeromq/examples/python/client.py
+++ b/gr-zeromq/examples/python/client.py
@@ -53,8 +53,8 @@ class top_block(gr.top_block):
#self.zmq_source = zeromq.req_source(gr.sizeof_float, 1, source_adr)
#self.zmq_source = zeromq.pull_source(gr.sizeof_float, 1, source_adr)
self.zmq_source = zeromq.sub_source(gr.sizeof_float, 1, source_adr)
- #self.zmq_probe = zeromq.push_sink(gr.sizeof_float,probe_adr)
- self.zmq_probe = zeromq.pub_sink(gr.sizeof_float,probe_adr)
+ #self.zmq_probe = zeromq.push_sink(gr.sizeof_float, 1, probe_adr)
+ self.zmq_probe = zeromq.pub_sink(gr.sizeof_float, 1, probe_adr)
# connects
self.connect(self.zmq_source, self.zmq_probe)