Pass cloud parameter to get_one call (#40892)

When we switch this to pull from the CloudRegion object, we missed
passing the parameter along.
pull/40983/head
Monty Taylor 6 years ago committed by David Shrewsbury
parent 96ec32630e
commit d0f43bc6f8

@ -191,8 +191,9 @@ def is_cache_stale(cache_file, cache_expiration_time, refresh=False):
def get_cache_settings(cloud=None):
config_files = cloud_config.CONFIG_FILES + CONFIG_FILES
config = cloud_config.OpenStackConfig(
config_files=cloud_config.CONFIG_FILES + CONFIG_FILES).get_one()
config_files=config_files).get_one(cloud=cloud)
# For inventory-wide caching
cache_expiration_time = config.get_cache_expiration_time()
cache_path = config.get_cache_path()

Loading…
Cancel
Save