Accessing a node that doesn't exist throws an exception

parent 6aafb42f
...@@ -391,9 +391,12 @@ class Runner(object): ...@@ -391,9 +391,12 @@ class Runner(object):
delegate_to = inject.get('delegate_to', None) delegate_to = inject.get('delegate_to', None)
if delegate_to is not None: if delegate_to is not None:
delegate_to = utils.template(self.basedir, delegate_to, inject) delegate_to = utils.template(self.basedir, delegate_to, inject)
delegate_info = inject['hostvars'][delegate_to] try:
actual_host = delegate_info.get('ansible_ssh_host', delegate_to) delegate_info = inject['hostvars'][delegate_to]
actual_port = delegate_info.get('ansible_ssh_port', port) 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: try:
# connect # connect
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment