diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-09-03 17:55:26 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-09-03 17:55:26 +0000 |
| commit | b1f348a37787ead06e48e79ac95f885830731b2f (patch) | |
| tree | 2bd07323c979fdce39d17d8aa840ca616087ea3b | |
| parent | c8880f8efcfc4c8569f9bae33a16997ab81787a0 (diff) | |
| parent | 1fbe593464b1dc110ddfe3e62bf8c5161224fe0c (diff) | |
| download | python-neutronclient-2.3.0.tar.gz | |
Merge "Remove status field from the list of fields of Healthmonitor"2.3.0
| -rw-r--r-- | neutronclient/neutron/v2_0/lb/healthmonitor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/neutronclient/neutron/v2_0/lb/healthmonitor.py b/neutronclient/neutron/v2_0/lb/healthmonitor.py index f26f944..0d70d7c 100644 --- a/neutronclient/neutron/v2_0/lb/healthmonitor.py +++ b/neutronclient/neutron/v2_0/lb/healthmonitor.py @@ -28,7 +28,7 @@ class ListHealthMonitor(neutronV20.ListCommand): resource = 'health_monitor' log = logging.getLogger(__name__ + '.ListHealthMonitor') - list_columns = ['id', 'type', 'admin_state_up', 'status'] + list_columns = ['id', 'type', 'admin_state_up'] pagination_support = True sorting_support = True |
