only force off KEYSTONE_USE_WSGI up until kilo

Keystone should be allowed to run in the wsgi mode in grenade, so stop
forcing this off for kilo and beyond upgrade testing.

Note: we also really should have an upgrade path from eventlet -> wsgi
tested, but that has not been done by the keystone team yet.

Change-Id: Ia4801bcd2278f39b17acb0883beec75b991b32df
This commit is contained in:
Sean Dague
2015-04-20 14:41:15 -04:00
parent 0b38c5dc51
commit 0911c9f3de

View File

@@ -299,7 +299,13 @@ EOF
fi
# keystone deployed with mod wsgi cannot be upgraded or migrated
# until https://launchpad.net/bugs/1365105 is resolved.
echo "KEYSTONE_USE_MOD_WSGI=False" >> "$localrc_file"
case $GRENADE_BASE_BRANCH in
"stable/icehouse")
;&
"stable/juno")
echo "KEYSTONE_USE_MOD_WSGI=False" >> "$localrc_file"
;;
esac
fi
if [[ "$DEVSTACK_GATE_TEMPEST_LARGE_OPS" -eq "1" ]]; then