Update cinder conf files for Juno

* Update api-paste with request-id

Change-Id: Ic4f56f19e2d85cadaa4566323409ca093d435f6a
Closes-Bug: #1352974
This commit is contained in:
Mark Vanderwiel
2014-08-05 10:56:50 -05:00
parent 12d0e9826a
commit cfcfccc01e
2 changed files with 10 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ This file is used to list changes made in each version of the openstack-block-st
## 10.0.0
* Upgrading to Juno
* Sync conf files with Juno
## 9.4.1
* Add support for LVMISCSIDriver driver using block devices with LVM

View File

@@ -12,15 +12,18 @@ use = call:cinder.api:root_app_factory
[composite:openstack_volume_api_v1]
use = call:cinder.api.middleware.auth:pipeline_factory
noauth = faultwrap sizelimit noauth apiv1
keystone = faultwrap sizelimit authtoken keystonecontext apiv1
keystone_nolimit = faultwrap sizelimit authtoken keystonecontext apiv1
noauth = request_id faultwrap sizelimit noauth apiv1
keystone = request_id faultwrap sizelimit authtoken keystonecontext apiv1
keystone_nolimit = request_id faultwrap sizelimit authtoken keystonecontext apiv1
[composite:openstack_volume_api_v2]
use = call:cinder.api.middleware.auth:pipeline_factory
noauth = faultwrap sizelimit noauth apiv2
keystone = faultwrap sizelimit authtoken keystonecontext apiv2
keystone_nolimit = faultwrap sizelimit authtoken keystonecontext apiv2
noauth = request_id faultwrap sizelimit noauth apiv2
keystone = request_id faultwrap sizelimit authtoken keystonecontext apiv2
keystone_nolimit = request_id faultwrap sizelimit authtoken keystonecontext apiv2
[filter:request_id]
paste.filter_factory = cinder.openstack.common.middleware.request_id:RequestIdMiddleware.factory
[filter:faultwrap]
paste.filter_factory = cinder.api.middleware.fault:FaultWrapper.factory