Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def run_health_check():
logging.error("Failed to send health check results!")
sleep(5)
return
elif ans['response'] != 'OK':
elif ans['response'] != 'OK' && ans['response'] != 'SUCCESS': # the response 'OK' is legacy and should be removed after some time
logging.error("Error on sending health check results: " + str(ans))
sleep(5)
return
Expand Down