vmware-nsx/quantum/plugins/cisco/nexus
Sergey Vilgelm 3ecd1cbbc9 Do not raise NEW exceptions
Raising NEW exception is bad practice, because we lose TraceBack.
So all places like:

except SomeException as e:
    raise e

should be replaced by

except SomeException:
    raise

If we are doing some other actions before reraising we should
store information about exception then do all actions and then
reraise it. This is caused by eventlet bug. It lost information
about exception if it switch threads.

fixes bug 1191730

Change-Id: Id4aaadde7e69f0bc087cf6d96bb041d53feb131d
2013-06-25 12:27:04 +04:00
..
__init__.py Second round of packaging changes 2011-11-28 10:33:52 -08:00
cisco_nexus_network_driver_v2.py Do not raise NEW exceptions 2013-06-25 12:27:04 +04:00
cisco_nexus_plugin_v2.py Do not raise NEW exceptions 2013-06-25 12:27:04 +04:00
cisco_nexus_snippets.py Adding SVI support to the Cisco Nexus plugin 2013-06-12 04:18:29 -04:00