keystonemiddleware/releasenotes/notes/bug-1789351-102e2e5119be38b4.yaml
wangxiyuan 4fb7fef1ea 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
2018-09-07 10:38:14 +08:00

8 lines
279 B
YAML

---
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.