Merge "Skip authentication for version and healthcheck endpoints"

This commit is contained in:
Zuul 2018-11-22 09:45:44 +00:00 committed by Gerrit Code Review
commit c297c5d33e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class SkippingAuthProtocol(auth_token.AuthProtocol):
def process_request(self, request):
path = request.path
for p in _SKIP_PATH:
if path.startswith(p):
if path.endswith(p):
LOG.debug(
('Request path is %s and it does not require keystone '
'communication'), path)