From 6b097bd501b2405e01c60e893b652fa797fe28a0 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 23 Jun 2016 16:30:33 -0600 Subject: [PATCH] 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 --- roles/users/tasks/update_keys.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/roles/users/tasks/update_keys.yml b/roles/users/tasks/update_keys.yml index 774e03b..cfdff65 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 -- 2.39.5