From 69ad01b2d9e5950b773a76e382575662577b1a11 Mon Sep 17 00:00:00 2001 From: Vishakha Agarwal Date: Mon, 1 Jun 2020 15:30:09 +0530 Subject: [PATCH] NIT: Fix Spelling in auth_context.py Change-Id: I83bd63e9f576041ffdb995fe441f1a3b0b371db2 --- .../server/flask/request_processing/middleware/auth_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystone/server/flask/request_processing/middleware/auth_context.py b/keystone/server/flask/request_processing/middleware/auth_context.py index 43c6f4e94e..168c594f26 100644 --- a/keystone/server/flask/request_processing/middleware/auth_context.py +++ b/keystone/server/flask/request_processing/middleware/auth_context.py @@ -371,7 +371,7 @@ class AuthContextMiddleware(provider_api.ProviderAPIMixin, if token.domain_scoped: # Domain scoped tokens should never have is_admin_project set # Even if KSA defaults it otherwise. The two mechanisms are - # parallel; only ione or the other should be used for access. + # parallel; only one or the other should be used for access. request_context.is_admin_project = False request_context.domain_id = token.domain_id request_context.domain_name = token.domain['name']