Enhance health check in checker.py by adding a print statement for the fixed message "test ok". This improves visibility of the health status during execution while maintaining the existing error handling structure.

This commit is contained in:
vvzvlad 2025-01-18 17:57:29 +03:00
parent 4e50ee554b
commit 49c13d9e42

View File

@ -183,6 +183,7 @@ if __name__ == "__main__":
#result = check_logs(logger) #result = check_logs(logger)
#data = f"{result['proved_steps']}/{result['proof_speed']}/{result['errors']}" # proved/proof_speed/Errors #data = f"{result['proved_steps']}/{result['proof_speed']}/{result['errors']}" # proved/proof_speed/Errors
grist_callback({ "Health": "test ok" }) grist_callback({ "Health": "test ok" })
print("test ok")
#print(result) #print(result)
break break
except Exception as e: except Exception as e: