diff options
| author | Ramamani Yeleswarapu <ramamani.yeleswarapu@intel.com> | 2017-02-01 14:32:07 -0800 |
|---|---|---|
| committer | Ramamani Yeleswarapu <ramamani.yeleswarapu@intel.com> | 2017-02-02 07:01:04 -0800 |
| commit | 73f316d804abff4cfbe45bf01aa4c81c2450ff2f (patch) | |
| tree | 5addbfbb71c6fd8ce68137333a7169bfd36f8d8f /ironic_python_agent | |
| parent | 5b1a217195e2b282ccbf7989b6ff4213a7dca478 (diff) | |
| download | ironic-python-agent-73f316d804abff4cfbe45bf01aa4c81c2450ff2f.tar.gz | |
Remove switch_port_descr and switch_chassis_descr
Removes two reserved fields ``switch_port_descr`` and
``switch_chassis_descr`` that were deprecated in the Newton cycle.
Change-Id: Icd2251af63a69d60d1e72eddf651a168fdae94fa
Diffstat (limited to 'ironic_python_agent')
| -rw-r--r-- | ironic_python_agent/hardware.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ironic_python_agent/hardware.py b/ironic_python_agent/hardware.py index 781179b6..ae245e7c 100644 --- a/ironic_python_agent/hardware.py +++ b/ironic_python_agent/hardware.py @@ -216,8 +216,7 @@ class BlockDevice(encoding.SerializableComparable): class NetworkInterface(encoding.SerializableComparable): - serializable_fields = ('name', 'mac_address', 'switch_port_descr', - 'switch_chassis_descr', 'ipv4_address', + serializable_fields = ('name', 'mac_address', 'ipv4_address', 'has_carrier', 'lldp', 'vendor', 'product', 'client_id') @@ -234,10 +233,6 @@ class NetworkInterface(encoding.SerializableComparable): # client identifier Option to allow DHCP to work over InfiniBand. # see https://tools.ietf.org/html/rfc4390 self.client_id = client_id - # TODO(sambetts) Remove these fields in Ocata, they have been - # superseded by self.lldp - self.switch_port_descr = None - self.switch_chassis_descr = None class CPU(encoding.SerializableComparable): |
