Fix problem of deleting dhcp port

when network is deleted, the dhcp port in that network will be deleted
automaticly, so '_cleanup_ports' should not clean dhcp port. I already
have a patch to fix the problem of deleting dhcp port.

Change-Id: I92f90a3dad6d76954d466e4b30ab7c46434ba7df
Closes-bug: #1279683
This commit is contained in:
shihanzhang 2014-02-18 10:27:02 +08:00
parent 2c2c765de9
commit c3d73c82d3
1 changed files with 2 additions and 1 deletions

View File

@ -456,7 +456,8 @@ class IsolatedCreds(object):
port
for port in self.ports
if (port['network_id'] == network_id and
port['device_owner'] != 'network:router_interface')
port['device_owner'] != 'network:router_interface' and
port['device_owner'] != 'network:dhcp')
]
for port in ports_to_delete:
try: