diff --git a/lib/ansible/plugins/action/synchronize.py b/lib/ansible/plugins/action/synchronize.py index 9bf12132ede..45004d5ed4e 100644 --- a/lib/ansible/plugins/action/synchronize.py +++ b/lib/ansible/plugins/action/synchronize.py @@ -134,10 +134,7 @@ class ActionModule(ActionBase): try: dest_host = dest_host_inventory_vars['ansible_host'] except KeyError: - try: - dest_host = dest_host_inventory_vars['ansible_ssh_host'] - except KeyError: - dest_host = inventory_hostname + dest_host = dest_host_inventory_vars.get('ansible_ssh_host', inventory_hostname) dest_is_local = dest_host in C.LOCALHOST