Fix str/int in tempest.conf

A recent change to the relation adapter switched api_version from a
float to a string and the template update was missed.

Change-Id: I2d364adbf0b8d80394c24ce8251f352dce156b7e
This commit is contained in:
Liam Young 2017-01-25 09:08:04 +00:00
parent 8d638c8d9c
commit 6b1d00a706
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ alt_tenant_name = alt_demo
admin_role = Admin
auth_version=v{{ identity_admin.keystone_info.api_version }}
[identity-feature-enabled]
{% if identity_admin.keystone_info.api_version == 3 -%}
{% if identity_admin.keystone_info.api_version == '3' -%}
api_v3=true
api_v2=false
{% else -%}