Merge "Use e.exc_type instead of calling str on exception" into stable/newton

This commit is contained in:
Jenkins 2017-06-23 11:49:32 +00:00 committed by Gerrit Code Review
commit 41a5c1042a
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,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)