Skip to content
Snippets Groups Projects

moving the initialization of the router around slightly

Merged Daniel Lyons requested to merge WS-677-fix-queue-again into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -45,10 +45,10 @@ class ExecutionManager(ExecutionManagerIF):
):
self.capability_info = capability_info
self.workflow_service = workflow_service
self.router = router
self.router.register(self)
self.messenger = messenger
self.queue_manager = CapabilityQueueManager(self.capability_info, self)
self.router = router
self.router.register(self)
def run_capability(self, execution: CapabilityExecutionIF) -> CapabilityExecutionIF:
"""
Loading