2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-21 17:11:58 +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 2c40d2fd0d
commit d99bc37ed3

View File

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