Skip to content

Commit

Permalink
test exit 0 message
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Jan 8, 2025
1 parent 94750dd commit e796034
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions scilifelab_epps/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def epp_wrapper(args):
)
sys.exit(2)
else:
print("Test print")
sys.exit(0)

return epp_wrapper
Expand Down
7 changes: 4 additions & 3 deletions scripts/fetch_last_known_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ def main(args):
)
logging.info(f"Traceback:\n{traceback}")

logging.warning(
f"UDF '{target_udf}' pulled from steps: {' ,'.join(set(steps_used))}. Please double check the values."
)
# Look into exit 0 with message
# - print
# - stderr
# - sys.exit("blabla")


if __name__ == "__main__":
Expand Down

0 comments on commit e796034

Please sign in to comment.