summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorYang Youseok <ileixe@gmail.com>2019-01-29 18:59:12 +0900
committerYang Youseok <ileixe@gmail.com>2019-02-07 12:14:51 +0900
commit4e51cb8e6b4968fcb68903dce7e773b218f85bb7 (patch)
tree892225214296a67d6c17fdd5d30c520a84d34af8 /releasenotes
parent4bc09580070c5f6afa9ef39a3d9d1641de557589 (diff)
downloadkeystonemiddleware-4e51cb8e6b4968fcb68903dce7e773b218f85bb7.tar.gz
Add auth invalidation in auth_token for identity endpoint update
Currently auth_token middleware does not concern identity endpoint update since service catalog is not updated after service having auth_token middleware started. Add invalidation logic when EndpointNotfound exception occurs so that auth_token middleware can be notified of sevice catalog update without restart. Change-Id: I631ee1538883d732fe3987b172d987f703dad5c0 Closes-Bug: #1813739
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/bug-1813739-80eae72371903119.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/releasenotes/notes/bug-1813739-80eae72371903119.yaml b/releasenotes/notes/bug-1813739-80eae72371903119.yaml
new file mode 100644
index 0000000..df6fadb
--- /dev/null
+++ b/releasenotes/notes/bug-1813739-80eae72371903119.yaml
@@ -0,0 +1,9 @@
+---
+fixes:
+ - |
+ [`bug/1813739 <https://bugs.launchpad.net/keystonemiddleware/+bug/1813739>`_]
+ When admin identity endpoint is not created yet, keystonemiddleware emit
+ EndpointNotFound exception. Even after admin identity endpoint created,
+ auth_token middleware could not be notified of update since it does not
+ invalidate existing auth. Add an invalidation step so that endpoint
+ updates can be detected.