Merge "Make linear strategy plugin 2.4 compatible"

This commit is contained in:
Jenkins 2017-09-12 21:59:32 +00:00 committed by Gerrit Code Review
commit 6d76b0c57d
1 changed files with 4 additions and 1 deletions

View File

@ -116,7 +116,10 @@ class StrategyModule(LINEAR.StrategyModule):
_play_context = copy.deepcopy(play_context)
groups = self._inventory.get_group_dict()
try:
groups = self._inventory.get_groups_dict()
except AttributeError:
groups = self._inventory.get_group_dict()
physical_hosts = groups.get('hosts', groups.get('all', {}))
physical_host_addrs = {}
for physical_host in physical_hosts: