From 50eac7b04c211d41944ea94dc8900405abb89a11 Mon Sep 17 00:00:00 2001 From: s3inlc Date: Tue, 28 Jul 2026 12:11:35 +0200 Subject: [PATCH] fix protocol inconsistency --- __main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__main__.py b/__main__.py index 6e3df3d..2241a06 100644 --- a/__main__.py +++ b/__main__.py @@ -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