Skip to content
Snippets Groups Projects
Commit c91d3bdf authored by Daniel Lyons's avatar Daniel Lyons Committed by Daniel Lyons
Browse files

moving the initialization of the router around slightly

parent b5369c0f
No related branches found
No related tags found
1 merge request!493moving the initialization of the router around slightly
Pipeline #2831 passed
...@@ -45,10 +45,10 @@ class ExecutionManager(ExecutionManagerIF): ...@@ -45,10 +45,10 @@ class ExecutionManager(ExecutionManagerIF):
): ):
self.capability_info = capability_info self.capability_info = capability_info
self.workflow_service = workflow_service self.workflow_service = workflow_service
self.router = router
self.router.register(self)
self.messenger = messenger self.messenger = messenger
self.queue_manager = CapabilityQueueManager(self.capability_info, self) self.queue_manager = CapabilityQueueManager(self.capability_info, self)
self.router = router
self.router.register(self)
def run_capability(self, execution: CapabilityExecutionIF) -> CapabilityExecutionIF: def run_capability(self, execution: CapabilityExecutionIF) -> CapabilityExecutionIF:
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment