Moved the _inventory.clear_group_dict_cache() from creating a group w… (#17766)

* Moved the _inventory.clear_group_dict_cache() from creating a group which doesn't exist, to adding members to the group.

* Update __init__.py

Update to use changed: block to catch all changes for cache clear as suggested
This commit is contained in:
jamessewell 2016-11-19 06:27:17 +11:00 committed by James Cammarata
parent 4d616366c0
commit b91d4d884d

View file

@ -624,9 +624,6 @@ class StrategyBase:
group_name = result_item.get('add_group')
new_group = self._inventory.get_group(group_name)
if not new_group:
# clear cache of group dict, which is used in magic host variables
self._inventory.clear_group_dict_cache()
# create the new group and add it to inventory
new_group = Group(name=group_name)
self._inventory.add_group(new_group)
@ -640,6 +637,10 @@ class StrategyBase:
if group_name not in host.get_groups():
new_group.add_host(real_host)
changed = True
if changed:
# clear cache of group dict, which is used in magic host variables
self._inventory.clear_group_dict_cache()
return changed