summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorwangxiyuan <wangxiyuan@huawei.com>2018-09-05 10:21:51 +0800
committerwangxiyuan <wangxiyuan@huawei.com>2018-09-07 10:38:14 +0800
commit4fb7fef1eab2a981b8e366091073b6ee2d80ee6a (patch)
tree0cfb0c30b3d5b21c24bad34e6381a154f3e7e91e /releasenotes
parent2803f49cb1488d1504fd63711fd84dd14310184d (diff)
downloadkeystonemiddleware-4fb7fef1eab2a981b8e366091073b6ee2d80ee6a.tar.gz
No need to compare CONF content
When setup AuthProtocol class, if the CONF object contains deprecated options, An Error "dictionary changed size during iteration" will raise when comparing the CONF content. Changing "!=" to "is not" here to avoid compare the CONF content anymore. Change-Id: I820aa244160db4f81149d2576386c86b46de0084 Closes-bug: #1789351
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/bug-1789351-102e2e5119be38b4.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/releasenotes/notes/bug-1789351-102e2e5119be38b4.yaml b/releasenotes/notes/bug-1789351-102e2e5119be38b4.yaml
new file mode 100644
index 0000000..65f5555
--- /dev/null
+++ b/releasenotes/notes/bug-1789351-102e2e5119be38b4.yaml
@@ -0,0 +1,7 @@
+---
+fixes:
+ - >
+ [`bug 1789351 <https://bugs.launchpad.net/keystonemiddleware/+bug/1789351>`_]
+ Fixed the bug that when initialize `AuthProtocol`, it'll raise "dictionary
+ changed size during iteration" error if the input `CONF` object contains
+ deprecated options.