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