Merge "Don't clutter logs with exceptions on retry."

This commit is contained in:
Zuul 2020-09-28 08:27:35 +00:00 committed by Gerrit Code Review
commit ff0299d507
1 changed files with 1 additions and 1 deletions

View File

@ -556,7 +556,7 @@ class LBaaSv2Driver(base.LBaaSDriver):
try: try:
lbaas.update_listener(listener_id, **request) lbaas.update_listener(listener_id, **request)
except os_exc.SDKException: except os_exc.SDKException:
LOG.exception('Error when updating listener %s' % listener_id) LOG.error('Error when updating listener %s' % listener_id)
raise k_exc.ResourceNotReady(listener_id) raise k_exc.ResourceNotReady(listener_id)
def _find_listener(self, listener, loadbalancer): def _find_listener(self, listener, loadbalancer):