Remove ssl middleware from pipeline

... because it was deprecated in foavor of the http_proxy_to_wsgi
middleware[1].

[1] 67ec67698074ef54c9c474228fec92b68015f884

Change-Id: If9ab4d4a02f55015cb81eb69f479b181397290a5
This commit is contained in:
Takashi Kajinami 2022-01-15 22:35:54 +09:00
parent 39105af559
commit 608e80b9ac
1 changed files with 1 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# senlin-api pipeline
[pipeline:senlin-api]
pipeline = cors http_proxy_to_wsgi request_id faultwrap ssl versionnegotiation osprofiler webhook authtoken context trust apiv1app
pipeline = cors http_proxy_to_wsgi request_id faultwrap versionnegotiation osprofiler webhook authtoken context trust apiv1app
[app:apiv1app]
paste.app_factory = senlin.api.common.wsgi:app_factory
@ -20,9 +20,6 @@ paste.filter_factory = senlin.api.common.wsgi:filter_factory
senlin.filter_factory = senlin.api.middleware:context_filter
oslo_config_project = senlin
[filter:ssl]
paste.filter_factory = oslo_middleware.ssl:SSLMiddleware.factory
[filter:versionnegotiation]
paste.filter_factory = senlin.api.common.wsgi:filter_factory
senlin.filter_factory = senlin.api.middleware:version_filter