summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-18 09:54:32 +0000
committerGerrit Code Review <review@openstack.org>2013-05-18 09:54:32 +0000
commite24a21b6aa4668d526d0a177721eaa6369f7af45 (patch)
treee792bbc863850ca83167b29038cfb78dcfd71734 /nova/api
parentad90907fb6bdbe10456e8e3e7fc462f0e661783c (diff)
parentdc887267572c821ce97bec9536a699b72bdae443 (diff)
Merge "Don't raise unnecessary stack traces in EC2 API"
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/ec2/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py
index b72c7d3a8..dfe015456 100644
--- a/nova/api/ec2/__init__.py
+++ b/nova/api/ec2/__init__.py
@@ -505,8 +505,6 @@ class Executor(wsgi.Application):
LOG.info(_('NotFound raised: %s'), unicode(ex), context=context)
return ec2_error(req, request_id, type(ex).__name__, unicode(ex))
except exception.EC2APIError as ex:
- LOG.exception(_('EC2APIError raised: %s'), unicode(ex),
- context=context)
if ex.code:
return ec2_error(req, request_id, ex.code, unicode(ex))
else: