parent
66eec42f53
commit
a47671aad1
2 changed files with 4 additions and 1 deletions
2
changelogs/fragments/openstack_inventory_fix.yml
Normal file
2
changelogs/fragments/openstack_inventory_fix.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- allow using openstack inventory plugin w/o a cache
|
|
@ -196,7 +196,8 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
|||
source_data = cloud_inventory.list_hosts(
|
||||
expand=expand_hostvars, fail_on_cloud_config=fail_on_errors)
|
||||
|
||||
self.cache.set(cache_key, source_data)
|
||||
if self.cache is not None:
|
||||
self.cache.set(cache_key, source_data)
|
||||
|
||||
self._populate_from_source(source_data)
|
||||
|
||||
|
|
Loading…
Reference in a new issue