1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix free strategy, which was incorrectly using _wait_on_pending_results

Broken in 210cf06d
This commit is contained in:
James Cammarata 2016-04-08 06:49:16 -04:00
parent eac4cf1177
commit e5c4f88b71

View file

@ -148,7 +148,7 @@ class StrategyModule(StrategyBase):
if last_host == starting_host:
break
results = self._wait_on_pending_results(iterator)
results = self._process_pending_results(iterator)
host_results.extend(results)
try: