zun/zun/tests/unit/api/controllers/auth-v1-access.ini
ChangBo Guo(gcb) 1c265af182 Remove deprecated usage of CORS.set_latent
Method set_latent is deprecated in favor of method set_defaults in
e9c3a23e845d8c53b266a3b2e4ca7fb0a5a0425a. We need remove the usage of
method set_latent. We just use these config options in tests, it works
well for unit tests without them, so it's safe to remove them.

Closes-Bug: #1707151

Change-Id: Ifb79f55b093415a5f2d6a018d6344d82b4a99d31
2017-08-18 11:31:19 +08:00

17 lines
422 B
INI

[pipeline:main]
pipeline = cors request_id authtoken api_v1
[app:api_v1]
paste.app_factory = zun.api.app:app_factory
[filter:authtoken]
acl_public_routes = /v1
paste.filter_factory = zun.api.middleware.auth_token:AuthTokenMiddleware.factory
[filter:request_id]
paste.filter_factory = oslo_middleware:RequestId.factory
[filter:cors]
paste.filter_factory = oslo_middleware.cors:filter_factory
oslo_config_project = zun