From 1e35236519239ef2b4acbb78249502b7bd8ce9b8 Mon Sep 17 00:00:00 2001 From: Aaron Lee Date: Fri, 9 Dec 2011 17:53:15 -0600 Subject: fixed_ips by vif does not raise It makes more sense if this method returns an empty array instead of raising when it finds no ips. This lets the iteration over that array handle the 0 case, and we can use a conditional on the len(of the ips) if really needed. I'm not sure that log is needed to say "No fixed IPs deallocated" or if that is an artifact of needing something to put in the exception handler. Change-Id: Ib9f66affb5360fb11a3ab5f415a0e57602cec886 --- nova/exception.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'nova/exception.py') diff --git a/nova/exception.py b/nova/exception.py index 565e55387..5f336ea1e 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -515,10 +515,6 @@ class FixedIpNotFoundForSpecificInstance(FixedIpNotFound): message = _("Instance %(instance_id)s doesn't have fixed ip '%(ip)s'.") -class FixedIpNotFoundForVirtualInterface(FixedIpNotFound): - message = _("Virtual interface %(vif_id)s has zero associated fixed ips.") - - class FixedIpNotFoundForHost(FixedIpNotFound): message = _("Host %(host)s has zero fixed ips.") -- cgit