Merge "Add paste.filter_factory entrypoint for basic auth middleware"

This commit is contained in:
Zuul 2021-10-26 16:20:36 +00:00 committed by Gerrit Code Review
commit b75a7184d9
2 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,8 @@
# License for the specific language governing permissions and limitations
# under the License.
__all__ = ['CatchErrors',
__all__ = ['BasicAuthMiddleware',
'CatchErrors',
'CorrelationId',
'CORS',
'Debug',
@ -20,6 +21,7 @@ __all__ = ['CatchErrors',
'RequestBodySizeLimiter',
'SSLMiddleware']
from oslo_middleware.basic_auth import BasicAuthMiddleware
from oslo_middleware.catch_errors import CatchErrors
from oslo_middleware.correlation_id import CorrelationId
from oslo_middleware.cors import CORS

View File

@ -43,6 +43,7 @@ paste.app_factory =
healthcheck = oslo_middleware:Healthcheck.app_factory
paste.filter_factory =
basic_auth = oslo_middleware:BasicAuthMiddleware.factory
catch_errors = oslo_middleware:CatchErrors.factory
correlation_id = oslo_middleware:CorrelationId.factory
cors = oslo_middleware:CORS.factory