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

This commit is contained in:
Jenkins 2017-06-22 08:26:13 +00:00 committed by Gerrit Code Review
commit 908c19ba1e
1 changed files with 1 additions and 1 deletions

View File

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