MCPcopy
hub / github.com/celery/celery / start_node

Method start_node

celery/apps/multi.py:409–413  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

407 return [self.start_node(node) for node in self]
408
409 def start_node(self, node):
410 maybe_call(self.on_node_start, node)
411 retcode = self._start_node(node)
412 maybe_call(self.on_node_status, node, retcode)
413 return retcode
414
415 def _start_node(self, node):
416 return node.start(

Callers 2

startMethod · 0.95
test_start_nodeMethod · 0.80

Calls 2

_start_nodeMethod · 0.95
maybe_callFunction · 0.85

Tested by 1

test_start_nodeMethod · 0.64