2013-06-13 11:26:58 -05:00
2013-06-13 11:26:58 -05:00
2013-03-18 17:34:01 -05:00
2013-06-13 11:26:58 -05:00
2013-04-25 14:43:01 -05:00
2013-01-02 17:28:35 -06:00
2013-01-02 17:28:35 -06:00
2013-03-25 18:00:59 -05:00
2013-03-25 18:00:59 -05:00
2013-03-21 15:41:06 -05:00
2013-03-21 15:41:06 -05:00
2013-03-13 21:46:27 -05:00

quark

Current Build Status

image

Why is nothing being commited to the database?

Quark uses and relies upon the transaction module, something at the end of the wsgi request needs to commit the transaction, or transaction aware databases (MySQL InnoDB, Postgres, et. al) will never commit.

The following quantum api-paste.ini enables repoze.tm2 to in the pipeline after authentication so transactions are started coming up the pipeline and commited coming down

[composite:quantum]
use = egg:Paste#urlmap
/: quantumversions
/v2.0: quantumapi_v2_0

[composite:quantumapi_v2_0]
use = call:quantum.auth:pipeline_factory
noauth = egg:repoze.tm2#tm extensions quantumapiapp_v2_0
keystone = authtoken keystonecontext egg:repoze.tm2#tm extensions quantumapiapp_v2_0

[filter:keystonecontext]
paste.filter_factory = quantum.auth:QuantumKeystoneContext.factory

[filter:authtoken]
paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory

[filter:extensions]
paste.filter_factory = quantum.api.extensions:plugin_aware_extension_middleware_factory

[app:quantumversions]
paste.app_factory = quantum.api.versions:Versions.factory

[app:quantumapiapp_v2_0]
paste.app_factory = quantum.api.v2.router:APIRouter.factory
Description
Highly performant and scalable Neutron plugin.
Readme 2.3 MiB
Languages
Python 98.8%
Dockerfile 0.6%
Shell 0.5%