Tempest refers CONF.identity-feature-enabled.api_extensions for
getting Keystone configuration from tempest.conf, but the commit
I3a92397d7bc62c3ec156281696d5c22504a86cb3 adds unnecessary group
identity and Tempest cannot refer the configuration now.
This patch fixes it.
Change-Id: Id7e1a94b1078b5934d2d140e85594ac0010e2e73
| ... | ... |
@@ -330,7 +330,7 @@ function configure_tempest {
|
| 330 | 330 |
if is_ssl_enabled_service "key" || is_service_enabled tls-proxy; then |
| 331 | 331 |
iniset $TEMPEST_CONFIG identity ca_certificates_file $SSL_BUNDLE_FILE |
| 332 | 332 |
fi |
| 333 |
- iniset $TEMPEST_CONFIG identity identity-feature-enabled api_extensions OS-EC2 |
|
| 333 |
+ iniset $TEMPEST_CONFIG identity-feature-enabled api_extensions OS-EC2 |
|
| 334 | 334 |
|
| 335 | 335 |
# Image |
| 336 | 336 |
# We want to be able to override this variable in the gate to avoid |