~ubuntu-branches/ubuntu/trusty/cinder/trusty

« back to all changes in this revision

Viewing changes to cinder/openstack/common/rpc/amqp.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-03-25 08:30:42 UTC
  • mfrom: (10.1.1 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20130325083042-4c9f80w7t98klicf
Tags: 1:2013.1~rc2-0ubuntu2
debian/rules: Fix FTBFS, we want '-v' and not '-V'. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
443
443
                       connection_pool=self.connection_pool,
444
444
                       log_failure=False)
445
445
        except Exception:
446
 
            LOG.exception(_('Exception during message handling'))
447
 
            ctxt.reply(None, sys.exc_info(),
448
 
                       connection_pool=self.connection_pool)
 
446
            # sys.exc_info() is deleted by LOG.exception().
 
447
            exc_info = sys.exc_info()
 
448
            LOG.error(_('Exception during message handling'),
 
449
                      exc_info=exc_info)
 
450
            ctxt.reply(None, exc_info, connection_pool=self.connection_pool)
449
451
 
450
452
 
451
453
class MulticallProxyWaiter(object):