Simplify error handling
This code block is needlessly complex. Change-Id: I41375458d21e38267cd0a1d21b0b14ab498fc172
This commit is contained in:
parent
9ba13b875f
commit
c87cbe62ec
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user