Update health status callback in checker.py to return a fixed message "test ok" instead of dynamic log data

This commit is contained in:
vvzvlad 2025-01-18 14:52:59 +03:00
parent da787935df
commit f5706ac887

View File

@ -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: