From e42245eb07b5d8f19c4fedb3e39490975c8e7e10 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Mon, 28 Apr 2014 14:45:59 +0200 Subject: [PATCH] added new column binary to the listing of agents Change-Id: I057185ef2b6e248271597e81a6bef44c2ad8d148 Closes-Bug: #1313702 --- neutronclient/neutron/v2_0/agent.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neutronclient/neutron/v2_0/agent.py b/neutronclient/neutron/v2_0/agent.py index ed813b918..884d443fc 100644 --- a/neutronclient/neutron/v2_0/agent.py +++ b/neutronclient/neutron/v2_0/agent.py @@ -31,7 +31,8 @@ class ListAgent(neutronV20.ListCommand): resource = 'agent' log = logging.getLogger(__name__ + '.ListAgent') - list_columns = ['id', 'agent_type', 'host', 'alive', 'admin_state_up'] + list_columns = ['id', 'agent_type', 'host', 'alive', 'admin_state_up', + 'binary'] _formatters = {'heartbeat_timestamp': _format_timestamp} sorting_support = True