Update docker.py

This commit is contained in:
qiaofeng1227 2023-03-10 09:23:11 +08:00 committed by GitHub
parent 90a15344c0
commit 0b2674f98f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ def get_process_perc(app_name):
http_port = read_env(path, "APP_HTTP_PORT")
output = shell_execute.execute_command_output_all("curl localhost:" + http_port)
code = output["code"]
if int(code) == 0 and output["result"].find("Failed connect")!= -1:
if int(code) == 0 and output["result"].find("Failed") != -1:
process_now = "running"