From f5706ac8879c213c121764391c07c47f4d7871a2 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Sat, 18 Jan 2025 14:52:59 +0300 Subject: [PATCH] Update health status callback in checker.py to return a fixed message "test ok" instead of dynamic log data --- checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checker.py b/checker.py index 19a5275..56173a2 100644 --- a/checker.py +++ b/checker.py @@ -182,7 +182,7 @@ if __name__ == "__main__": try: result = check_logs(logger) data = f"{result['proved_steps']}/{result['proof_speed']}/{result['errors']}" # proved/proof_speed/Errors - grist_callback({ "Health": data }) + grist_callback({ "Health": "test ok" }) print(result) break except Exception as e: