Accessing a node that doesn't exist throws an exception
This commit is contained in:
parent
556799a7c4
commit
19797e1a29
1 changed files with 6 additions and 3 deletions
|
@ -391,9 +391,12 @@ class Runner(object):
|
|||
delegate_to = inject.get('delegate_to', None)
|
||||
if delegate_to is not None:
|
||||
delegate_to = utils.template(self.basedir, delegate_to, inject)
|
||||
delegate_info = inject['hostvars'][delegate_to]
|
||||
actual_host = delegate_info.get('ansible_ssh_host', delegate_to)
|
||||
actual_port = delegate_info.get('ansible_ssh_port', port)
|
||||
try:
|
||||
delegate_info = inject['hostvars'][delegate_to]
|
||||
actual_host = delegate_info.get('ansible_ssh_host', delegate_to)
|
||||
actual_port = delegate_info.get('ansible_ssh_port', port)
|
||||
except errors.AnsibleError:
|
||||
actual_host = delegate_to
|
||||
|
||||
try:
|
||||
# connect
|
||||
|
|
Loading…
Reference in a new issue