From 115b2a48f32bca5939600a66767cce5069098bf8 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 21 Apr 2018 16:55:22 +0300 Subject: Add: /status endpoint for getting status of all projects Also change icktool to use it, for speed. --- icktool | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'icktool') diff --git a/icktool b/icktool index 025a74d..865c0c4 100755 --- a/icktool +++ b/icktool @@ -60,6 +60,7 @@ class Icktool(cliapp.Application): _default_scopes = [ 'uapi_version_get', 'uapi_work_post', + 'uapi_status_get', 'uapi_projects_id_status_get', 'uapi_projects_id_status_put', 'uapi_blobs_id_get', @@ -282,12 +283,12 @@ class StatusCommand(Command): projects = self.api.show('/projects') builds = self.api.show('/builds') + statuses = self.api.show('/status') projects = self._sort_projects(projects) for project in projects: project_name = project['project'] - project_status = self.api.show( - '/projects/{}/status'.format(project_name)) + project_status = statuses[project_name] row = { 'project': project_name, -- cgit v1.2.1