9526289b76
In Django 3.2 CookieStorage stores messages in the RFC 6265 compliant
format [1][2]. This means that horizon messages pass through cookies are
encoded in a different way that messages are encrypted.
Previously horizon UT interpretes messages in cookies literally in its own way,
but the change on CookieStorage in Django 3.2 broke it. Horizon should not
depend on its own way. The suggested way I believe is to use a method defined
in django.contrib.messages.storage.cookie.CookieStorage.
[1] https://docs.djangoproject.com/en/3.2/releases/3.2/#miscellaneous
[2]
|
||
---|---|---|
.. | ||
templates/volume_groups | ||
__init__.py | ||
forms.py | ||
panel.py | ||
tables.py | ||
tabs.py | ||
tests.py | ||
urls.py | ||
views.py | ||
workflows.py |