]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix typo in lbaas agent exception message
authorEugene Nikanorov <enikanorov@mirantis.com>
Thu, 20 Mar 2014 14:43:18 +0000 (18:43 +0400)
committerEugene Nikanorov <enikanorov@mirantis.com>
Thu, 20 Mar 2014 14:43:18 +0000 (18:43 +0400)
Change-Id: Iec2a5e02d40f73e4576ed853577a6a9f85e49e67
Closes-Bug: #1295187

neutron/services/loadbalancer/agent/agent_manager.py

index 91b453071c4ce9c2b0897527f3736c2a5fcad411..e94978e9004a6b3ad6841dcd30d5110ad4468c00 100644 (file)
@@ -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):