From ef7e17e66591bb93eeeff8d58a8e5c96bf2eca89 Mon Sep 17 00:00:00 2001 From: Eugene Nikanorov Date: Thu, 20 Mar 2014 18:43:18 +0400 Subject: [PATCH] Fix typo in lbaas agent exception message Change-Id: Iec2a5e02d40f73e4576ed853577a6a9f85e49e67 Closes-Bug: #1295187 --- neutron/services/loadbalancer/agent/agent_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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): -- 2.45.2