mirror of
https://github.com/stevenrobertson/cuburn.git
synced 2025-04-21 00:51:31 -04:00
5 lines
162 B
Python
5 lines
162 B
Python
ip = '127.0.0.1'
|
|
port = 12615
|
|
names = 'tasks tasks_loprio workers responses'.split()
|
|
addrs = dict((k, 'tcp://%s:%d' % (ip, port+i)) for i, k in enumerate(names))
|