Skip to content
Snippets Groups Projects
Commit fe876c2e authored by Tobias Melson's avatar Tobias Melson
Browse files

Fixed output in admin info

parent f8fcc442
No related branches found
No related tags found
No related merge requests found
Pipeline #234615 passed
...@@ -72,7 +72,7 @@ def print_workers(api_url): ...@@ -72,7 +72,7 @@ def print_workers(api_url):
down_workers += 1 down_workers += 1
print(" {0}: {1}".format(down.get("workerid").split(":")[0], colored("down", "red"))) print(" {0}: {1}".format(down.get("workerid").split(":")[0], colored("down", "red")))
if len(building_workers) == 0 and down_workers == 0: if len(building_workers) == 0 and waiting_jobs == 0 and down_workers == 0:
print(" {0}".format(colored("all idling", "green"))) print(" {0}".format(colored("all idling", "green")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment