Fix a crash
This commit is contained in:
parent
3e82ffe2cb
commit
ba66b3a7d0
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ class ServerBase():
|
|||
update = True
|
||||
server.site = nb_dc.id
|
||||
|
||||
if rack and server.rack and server.rack.id != nb_rack.id:
|
||||
if rack and all(map(lambda x: x is not None and "id" in x, (nb_rack, server.rack))) and server.rack.id != nb_rack.id:
|
||||
logging.info('Rack location has changed from {} to {}, updating'.format(
|
||||
server.rack,
|
||||
nb_rack,
|
||||
|
|
|
|||
Loading…
Add table
editor.link_modal.header
Reference in a new issue