mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
if we've failed a connection to a host - we cannot set items to the
'conn' object since it is not an object on failure - it's a string.
This commit is contained in:
parent
96d39a0dff
commit
19b784e480
1 changed files with 2 additions and 2 deletions
|
@ -348,10 +348,10 @@ class Runner(object):
|
|||
# module, call the appropriate executor function
|
||||
|
||||
ok, conn = self._connect(host)
|
||||
conn._host = host
|
||||
if not ok:
|
||||
return [ host, False, conn ]
|
||||
|
||||
|
||||
conn._host = host
|
||||
tmp = self._get_tmp_path(conn)
|
||||
result = None
|
||||
if self.module_name not in [ 'copy', 'template' ]:
|
||||
|
|
Loading…
Reference in a new issue