mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-16 01:13:47 +00:00
migrate health_check.py to python3
This commit is contained in:
parent
cef608b809
commit
040fb6fbbd
@ -1,11 +1,11 @@
|
|||||||
import xmlrpclib
|
import xmlrpc.client
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
try:
|
try:
|
||||||
server = xmlrpclib.Server("http://localhost:9005/RPC2")
|
with xmlrpc.client.ServerProxy("http://localhost:9005/RPC2") as server:
|
||||||
info = server.supervisor.getAllProcessInfo()
|
info = server.supervisor.getAllProcessInfo()
|
||||||
error_states = list(filter(lambda x: x["state"] != 20, info))
|
error_states = list(filter(lambda x: x["state"] != 20, info))
|
||||||
exit(len(error_states))
|
exit(len(error_states))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e.with_traceback())
|
print(e.with_traceback())
|
||||||
exit(1)
|
exit(1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user