summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-06-13 20:57:20 +0000
committerGerrit Code Review <review@openstack.org>2012-06-13 20:57:20 +0000
commit85db093bea5972ecea25474ee9081623788b8e49 (patch)
tree93f357fbbba31e9fad6da26fe1ecc76f4976539d
parentdfcaa325f7a6925f59123a33bd509ebc6c04bd03 (diff)
parenta5b923722c75dbfbb0a44c0f6ef6542db3c3aee2 (diff)
Merge "Log warnings instead of full exceptions for AMQP reconnects."
-rw-r--r--nova/rpc/impl_kombu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/rpc/impl_kombu.py b/nova/rpc/impl_kombu.py
index a9d887323..ac4b412bb 100644
--- a/nova/rpc/impl_kombu.py
+++ b/nova/rpc/impl_kombu.py
@@ -520,7 +520,7 @@ class Connection(object):
sleep_time = min(sleep_time, self.interval_max)
log_info['sleep_time'] = sleep_time
- LOG.exception(_('AMQP server on %(hostname)s:%(port)d is'
+ LOG.warn(_('AMQP server on %(hostname)s:%(port)d is'
' unreachable: %(err_str)s. Trying again in '
'%(sleep_time)d seconds.') % log_info)
time.sleep(sleep_time)