From: Eugene Nikanorov Date: Thu, 20 Mar 2014 14:43:18 +0000 (+0400) Subject: Fix typo in lbaas agent exception message X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ef7e17e66591bb93eeeff8d58a8e5c96bf2eca89;p=openstack-build%2Fneutron-build.git Fix typo in lbaas agent exception message Change-Id: Iec2a5e02d40f73e4576ed853577a6a9f85e49e67 Closes-Bug: #1295187 --- diff --git a/neutron/services/loadbalancer/agent/agent_manager.py b/neutron/services/loadbalancer/agent/agent_manager.py index 91b453071..e94978e90 100644 --- a/neutron/services/loadbalancer/agent/agent_manager.py +++ b/neutron/services/loadbalancer/agent/agent_manager.py @@ -138,7 +138,8 @@ class LbaasAgentManager(periodic_task.PeriodicTasks): if stats: self.plugin_rpc.update_pool_stats(pool_id, stats) except Exception: - LOG.exception(_('Error upating stats')) + LOG.exception(_('Error updating statistics on pool %s'), + pool_id) self.needs_resync = True def sync_state(self):