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

Merge pull request #17622 from privateip/network-plugin-fix

fixes AttributeError: 'Task' object has no attribute '_block'
This commit is contained in:
Peter Sprygada 2016-09-16 22:31:34 -04:00 committed by GitHub
commit 6826ed3879
2 changed files with 10 additions and 8 deletions

View file

@ -108,6 +108,7 @@ class ActionModule(ActionBase):
searchpath = [working_path]
if self._task._role is not None:
searchpath.append(self._task._role._role_path)
if hasattr(self._task, "_block:"):
dep_chain = self._task._block.get_dep_chain()
if dep_chain is not None:
for role in dep_chain:

View file

@ -101,6 +101,7 @@ class ActionModule(ActionBase):
searchpath = [working_path]
if self._task._role is not None:
searchpath.append(self._task._role._role_path)
if hasattr(self._task, "_block:"):
dep_chain = self._task._block.get_dep_chain()
if dep_chain is not None:
for role in dep_chain: