From 8e47bfc77c37610e0da577f13d7a3eb7894139a0 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 21 Aug 2021 20:19:48 +0900 Subject: Add paste.filter_factory entrypoint for basic auth middleware ... so that the middleware can be loaded using the python egg instead of the direct path. Closes-Bug: #1940738 Change-Id: I57408766c120d2c9784f3886457e91ee7d30de1b --- oslo_middleware/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'oslo_middleware/__init__.py') diff --git a/oslo_middleware/__init__.py b/oslo_middleware/__init__.py index ea1c12d..3966cde 100644 --- a/oslo_middleware/__init__.py +++ b/oslo_middleware/__init__.py @@ -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 -- cgit v1.2.1