blob: 1b1d752bcc23f8f77129a7084c1fc6bdec64cbb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- molequeue/client.py.orig 2018-10-21 03:22:34 UTC
+++ molequeue/client.py
@@ -122,7 +122,7 @@ class Client:
self.socket = self.context.socket(zmq.DEALER)
tmpdir = tempfile.gettempdir()
- connection_string = 'ipc://%s/%s_%s' % (tmpdir, 'zmq', server)
+ connection_string = 'ipc://%s/%s' % (tmpdir, server)
self.socket.connect(connection_string)
io_loop = ioloop.IOLoop.instance()
|