summaryrefslogtreecommitdiff
path: root/nova/crypto.py
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2013-03-05 10:55:18 -0500
committerRussell Bryant <rbryant@redhat.com>2013-03-05 10:57:55 -0500
commit2f983793574de07269c4a79852d75a9059465ee0 (patch)
treeb3c007c3f5fc8d45e4e575a6d233e19bcdeffe92 /nova/crypto.py
parentad57a303f1916d99f73eb8123f60c8a2fd1e6a78 (diff)
downloadnova-2f983793574de07269c4a79852d75a9059465ee0.tar.gz
Fix issues with re-raising exceptions.
There is complication with re-raising exceptions and our usage of eventlet. If the code in the exception handler accesses the db or rpc in the exception handler, it will no longer be able to re-raise the exception. Using excutils.save_and_reraise_exception() works aorund this issue. The most common error is calling LOG.error() or LOG.exception(), as it is possible for these to go access rpc. There is an option to turn on notifications for these errors. Fix bug 845866. Change-Id: Icfca2af63805711229249aa7abe60a938edd1b35
Diffstat (limited to 'nova/crypto.py')
-rw-r--r--nova/crypto.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/crypto.py b/nova/crypto.py
index 4d72aa6244..736e999617 100644
--- a/nova/crypto.py
+++ b/nova/crypto.py
@@ -38,6 +38,7 @@ from pyasn1.type import univ
from nova import context
from nova import db
from nova import exception
+from nova.openstack.common import excutils
from nova.openstack.common import fileutils
from nova.openstack.common import log as logging
from nova.openstack.common import timeutils
@@ -387,8 +388,8 @@ def _sign_csr(csr_text, ca_folder):
with open(inbound, 'w') as csrfile:
csrfile.write(csr_text)
except IOError:
- LOG.exception(_('Failed to write inbound.csr'))
- raise
+ with excutils.save_and_reraise_exception():
+ LOG.exception(_('Failed to write inbound.csr'))
LOG.debug(_('Flags path: %s'), ca_folder)
start = os.getcwd()