FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 60ea6c29 authored by L. Bower's avatar L. Bower
Browse files

restoring the original exit code - decided to experiment for airflow in a different branch

parent 55d6d458
No related branches found
No related tags found
No related merge requests found
......@@ -605,10 +605,10 @@ if __name__ == '__main__':
args_dict: dict = parse_and_check_args(todayString)
set_log_level(args_dict['log_level'])
run_Process(args_dict)
except SystemExit as e:
print("caught with code " + str(e.code))
except SystemExit:
logger.info('run_process() exited')
sys.exit(e.code)
pass
except:
logger.exception('Uncaught exception in run_Process:')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment