Skip to content

Do not use sys.exit() for lava-coordinator

Igor Ponomarev requested to merge lava-coordinator-do-not-use-sys-exit into master

The main() only returns None. Calling sys.exit() with None is equivalent to calling it with 0. The script terminates after the main() anyway.

Merge request reports