Skip to content

Commit 8c10520

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Fix TEMPEST_AUTH_VERSION comparision condition for identity v2"
2 parents 3c1a90c + 11b8649 commit 8c10520

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/tempest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ function configure_tempest {
279279
iniset $TEMPEST_CONFIG identity-feature-enabled api_v2 False
280280
fi
281281
iniset $TEMPEST_CONFIG identity auth_version ${TEMPEST_AUTH_VERSION:-v3}
282-
if [[ "$TEMPEST_AUTH_VERSION" != "v2.0" ]]; then
283-
# we're going to disable v2 admin unless we're using v2.0 by default.
282+
if [[ "$TEMPEST_AUTH_VERSION" != "v2" ]]; then
283+
# we're going to disable v2 admin unless we're using v2 by default.
284284
iniset $TEMPEST_CONFIG identity-feature-enabled api_v2_admin False
285285
fi
286286

0 commit comments

Comments
 (0)