From: Zack Cerza Date: Thu, 23 Jun 2016 22:30:33 +0000 (-0600) Subject: Remove unnecessary retry X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6b097bd501b2405e01c60e893b652fa797fe28a0;p=ceph-cm-ansible.git Remove unnecessary retry Since each key isn't being fetched from a remote server any longer, we can drop the retries. Signed-off-by: Zack Cerza --- diff --git a/roles/users/tasks/update_keys.yml b/roles/users/tasks/update_keys.yml index 774e03b1..cfdff653 100644 --- a/roles/users/tasks/update_keys.yml +++ b/roles/users/tasks/update_keys.yml @@ -38,9 +38,3 @@ key: "{{ item.key }}" with_items: "{{ pubkey_users }}" when: item.key is defined - # Register and retry to work around transient githubusercontent.com issues - register: ssh_key_update - until: ssh_key_update|success - # try for 2 minutes to retrieve the key before failing - retries: 24 - delay: 5