migrate health_check.py to python3

This commit is contained in:
Harry Chen 2021-10-25 20:49:10 -07:00
parent d98b71f9e8
commit 7fab75e187
No known key found for this signature in database
GPG Key ID: BDBB163872DA9751
2 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ ENV OJ_ENV production
ADD . /app ADD . /app
WORKDIR /app WORKDIR /app
HEALTHCHECK --interval=5s --retries=3 CMD python2 /app/deploy/health_check.py HEALTHCHECK --interval=5s --retries=3 CMD python3 /app/deploy/health_check.py
RUN apk add --update --no-cache build-base nginx openssl curl unzip supervisor jpeg-dev zlib-dev postgresql-dev freetype-dev && \ RUN apk add --update --no-cache build-base nginx openssl curl unzip supervisor jpeg-dev zlib-dev postgresql-dev freetype-dev && \
pip install --no-cache-dir -r /app/deploy/requirements.txt && \ pip install --no-cache-dir -r /app/deploy/requirements.txt && \

View File

@ -1,8 +1,8 @@
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))