vmware-nsx/quantum/plugins/cisco
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
..
common Remove unit tests that are no longer run. 2013-06-13 20:48:45 -04:00
db Adding SVI support to the Cisco Nexus plugin 2013-06-12 04:18:29 -04:00
extensions Docstrings formatted according to pep257 2013-04-30 17:09:13 +03:00
models Adding SVI support to the Cisco Nexus plugin 2013-06-12 04:18:29 -04:00
nexus Do not raise NEW exceptions 2013-06-25 12:27:04 +04:00
test Remove unit tests that are no longer run. 2013-06-13 20:48:45 -04:00
__init__.py Update codebase for HACKING compliance. 2012-05-01 11:46:24 -07:00
l2device_plugin_base.py Docstrings formatted according to pep257 2013-04-30 17:09:13 +03:00
network_plugin.py blueprint cisco-plugin-exception-handling 2013-05-06 11:59:33 -04:00
README Remove unit tests that are no longer run. 2013-06-13 20:48:45 -04:00

Cisco Quantum Virtual Network Plugin

This plugin implements Quantum v2 APIs and helps configure
topologies consisting of virtual and physical switches.

For more details on use please refer to:
http://wiki.openstack.org/cisco-quantum