Skip to content

Commit

Permalink
ammend previous push
Browse files Browse the repository at this point in the history
  • Loading branch information
RockfordMankiniUCSD committed May 11, 2023
1 parent 29da6c1 commit f772aa5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion health-check/health-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def run_health_check():
cookie_vals = os.getenv("cookie_vals").split(";")[:-1]
url = os.getenv("url")

if(run_health_check == 200):
if(run_health_check() == 200):
log.info("Success!")
else:
log.warning("Failure. Check logs.")
sys.exit(-5)

0 comments on commit f772aa5

Please sign in to comment.