From 203d253b162a2d3650fbf57d1ae21a2156e25774 Mon Sep 17 00:00:00 2001 From: Vijendar Komalla Date: Mon, 12 Oct 2015 16:28:09 -0500 Subject: [PATCH] Display status field in workflow list output Added status field in the output and removed app_id, config and source. Change-Id: I2dd1409216ae9f3fe5b66fefc826e4bb1dcddfe9 Closes-Bug: #1505341 --- solumclient/solum.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solumclient/solum.py b/solumclient/solum.py index f3561e9..e3f3b3b 100644 --- a/solumclient/solum.py +++ b/solumclient/solum.py @@ -978,8 +978,8 @@ class WorkflowCommands(cli_utils.CommandsBase): args = self.parser.parse_args() app = self.client.apps.find(name_or_id=args.app) wfs = cli_wf.WorkflowManager(self.client, app_id=app.id).list() - fields = ['wf_id', 'app_id', 'actions', 'config', - 'source', 'id', 'created_at', 'updated_at'] + fields = ['wf_id', 'id', 'actions', 'status', + 'created_at', 'updated_at'] self._print_list(wfs, fields) def show(self):