commit | 5ea9df0a51c30657b56406e531f0973029873192 | [log] [tgz] |
---|---|---|
author | koder aka kdanilov <kdanilov@mirantis.com> | Fri Dec 04 21:46:06 2015 +0200 |
committer | koder aka kdanilov <kdanilov@mirantis.com> | Fri Dec 04 21:46:06 2015 +0200 |
tree | 6ed8a162daffbea6bd97c611122e87a94b254d8c | |
parent | 10266f400cba60d74cace2bb4b4daf5e23992fe8 [diff] [blame] |
fixes
diff --git a/wally/fuel_rest_api.py b/wally/fuel_rest_api.py index a0eb1ef..728ac94 100644 --- a/wally/fuel_rest_api.py +++ b/wally/fuel_rest_api.py
@@ -351,7 +351,8 @@ creds['tenant_name'] = access['tenant']['value'] version = FuelInfo(self.__connection__).get_version() - if version >= [7, 0]: #only HTTPS since 7.0 + # only HTTPS since 7.0 + if version >= [7, 0]: creds['insecure'] = "True" creds['os_auth_url'] = "https://{0}:5000/v2.0".format( self.get_networks()['public_vip'])