2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Fix missing exit code in nomededia

nodemedia was not setting return code on exit properly.
This commit is contained in:
Jarrod Johnson 2021-03-08 08:00:47 -05:00
parent c9157b90eb
commit 94a4a7e20b

View File

@ -187,5 +187,7 @@ def main():
argparser.print_help()
sys.exit(1)
handler(noderange, media)
if __name__ == '__main__':
main()
sys.exit(exitcode)