MCPcopy
hub / github.com/celery/celery / run

Method run

celery/apps/beat.py:78–84  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

76 self.loglevel = LOG_LEVELS[self.loglevel.upper()]
77
78 def run(self) -> None:
79 if not self.quiet:
80 print(str(self.colored.cyan(
81 f'celery beat v{VERSION_BANNER} is starting.')))
82 self.init_loader()
83 self.set_process_title()
84 self.start_scheduler()
85
86 def setup_logging(self, colorize: bool | None = None) -> None:
87 if colorize is None and self.no_color is not None:

Callers

nothing calls this directly

Calls 4

init_loaderMethod · 0.95
set_process_titleMethod · 0.95
start_schedulerMethod · 0.95
cyanMethod · 0.80

Tested by

no test coverage detected