From 96be8496cfd855a3cca7f50b674bd2641c396c56 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 16 Dec 2014 23:20:43 -0700 Subject: [PATCH] Type and image_id are removed from server No longer show them in the bay object for the client Change-Id: Ie872e780154b77fced4a83fbe591af8120353272 --- magnumclient/api/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magnumclient/api/shell.py b/magnumclient/api/shell.py index befcf071..78d78722 100644 --- a/magnumclient/api/shell.py +++ b/magnumclient/api/shell.py @@ -45,7 +45,7 @@ def _show_node(node): def do_bay_list(cs, args): """Print a list of available bays.""" bays = cs.bays.list() - columns = ('uuid', 'name', 'type', 'image_id', 'node_count') + columns = ('uuid', 'name', 'node_count') utils.print_list(bays, columns, {'versions': _print_list_field('versions')})