Merge "Use e.exc_type instead of calling str on exception"
This commit is contained in:
commit
016a809e4f
@ -136,7 +136,7 @@ class _TrunkAPI(object):
|
||||
except resources_rpc.ResourceNotFound:
|
||||
return None
|
||||
except oslo_messaging.RemoteError as e:
|
||||
if 'CallbackNotFound' not in str(e):
|
||||
if e.exc_type != 'CallbackNotFound':
|
||||
raise
|
||||
LOG.debug("Trunk plugin disabled on server. Assuming port %s is "
|
||||
"not a trunk.", port_id)
|
||||
|
Loading…
Reference in New Issue
Block a user