Simplify error handling

This code block is needlessly complex.

Change-Id: I41375458d21e38267cd0a1d21b0b14ab498fc172
This commit is contained in:
Robert Collins 2014-07-07 13:18:35 +12:00
parent 9ba13b875f
commit c87cbe62ec

View File

@ -563,9 +563,7 @@ class IronicDriver(virt_driver.ComputeDriver):
# TODO(deva): This exception should be added to
# python-ironicclient and matched directly,
# rather than via __name__.
if getattr(e, '__name__', None) == 'InstanceDeployFailure':
pass
else:
if getattr(e, '__name__', None) != 'InstanceDeployFailure':
raise
# using a dict because this is modified in the local method