Merge "Fix logging error in get_current_loadbalancer_from_db"

This commit is contained in:
Zuul 2018-10-22 19:03:23 +00:00 committed by Gerrit Code Review
commit 2c790796f5
1 changed files with 1 additions and 1 deletions

View File

@ -243,6 +243,6 @@ class TaskUtils(object):
return self.loadbalancer_repo.get(db_apis.get_session(),
id=loadbalancer_id)
except Exception as e:
LOG.error("Failed to get loadbalancer &(loadbalancer)s "
LOG.error("Failed to get loadbalancer %(loadbalancer)s "
"due to: %(except)s",
{'loadbalancer': loadbalancer_id, 'except': e})