Comment 3 for bug 1706879

Revision history for this message
Marek Lyčka (mareklycka) wrote : Re: /identity/domains has no links

Hi,

we recently ran into this issue. After some digging we found out that the domain token was not being set because our session backend was set to signed cookies:

SESSION_ENGINE = 'django.contrib.sessions.backends.signed_cookies'

which is explicitly forbidden when OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT is set to true as per openstack_auth/backend.py.

Try changing your SESSION_ENGINE to one of the other options (https://docs.openstack.org/horizon/latest/admin/sessions.html) and see if it solves the issue.