diff --git a/rapl_formula/__main__.py b/rapl_formula/__main__.py index ecba1ee..e2884b8 100644 --- a/rapl_formula/__main__.py +++ b/rapl_formula/__main__.py @@ -52,8 +52,6 @@ class BadActorInitializationError(Exception): def launch_powerapi(config, logger): - ########################################################################## - # Actor Creation # Pusher pushers = generate_pushers(config) @@ -75,9 +73,6 @@ def launch_powerapi(config, logger): report_filter.filter(lambda msg: True, dispatcher) pullers = generate_pullers(config, report_filter) - ########################################################################## - # Actor start step - # Setup signal handler def term_handler(_, __): for _, puller in pullers.items(): @@ -110,14 +105,9 @@ def term_handler(_, __): logger.error('Actor initialisation error, reason : ' + exn.message) supervisor.kill_actors() - ########################################################################## - # Actor run step - # wait supervisor.join() - ########################################################################## - def main(args=None): """