From f5eb31e2dabc03cc06196c54b9335d782d2085b1 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Mon, 31 Aug 2015 10:41:37 -0500 Subject: [PATCH] users: increase the retry count to 24 for fetching ssh keys from github We were still getting timeouts when requesting keys from github, so we're gonna try to just simply increase the number of times it retries to see if that helps things. See: http://tracker.ceph.com/issues/12868 Signed-off-by: Andrew Schoen --- roles/users/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index 55844e7..ed7034b 100644 --- a/roles/users/tasks/main.yml +++ b/roles/users/tasks/main.yml @@ -46,7 +46,8 @@ # Register and retry to work around transient githubusercontent.com issues register: ssh_key_update until: ssh_key_update|success - retries: 3 + # try for 2 minutes to retrieve the key before failing + retries: 24 delay: 5 tags: - pubkeys -- 2.39.5