зеркало из https://github.com/mozilla/stoneridge.git
Fix access of client queues in scheduler
Had been moved to a dict, never changed the scheduler. *Facepalm*
This commit is contained in:
Родитель
970818807a
Коммит
2831df0b9e
|
@ -14,11 +14,11 @@ class StoneRidgeScheduler(stoneridge.QueueListener):
|
|||
self.netconfig = netconfig
|
||||
|
||||
self.runners = {
|
||||
'linux': stoneridge.RpcCaller(stoneridge.LINUX_QUEUE,
|
||||
'linux': stoneridge.RpcCaller(stoneridge.CLIENT_QUEUES['linux'],
|
||||
self.rpc_queue),
|
||||
'mac': stoneridge.RpcCaller(stoneridge.MAC_QUEUE,
|
||||
'mac': stoneridge.RpcCaller(stoneridge.CLIENT_QUEUES['mac'],
|
||||
self.rpc_queue),
|
||||
'windows': stoneridge.RpcCaller(stoneridge.WINDOWS_QUEUE,
|
||||
'windows': stoneridge.RpcCaller(stoneridge.CLIENT_QUEUES['windows'],
|
||||
self.rpc_queue)
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче