From 7202a984380f1fc7d1e9a4e1cc157b0941e2c3f0 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Tue, 4 Apr 2023 19:11:56 +0000 Subject: [PATCH] cron: Move fetch-tor-exit-nodes to not on the hour. We see connection timeouts and other access issues when run exactly on the hour, either due to load on their servers from similar cron jobs, or from operational processes of theirs. Move to on the :17s to avoid these access issues. --- puppet/zulip/files/cron.d/fetch-tor-exit-nodes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/zulip/files/cron.d/fetch-tor-exit-nodes b/puppet/zulip/files/cron.d/fetch-tor-exit-nodes index 6b78d98366..50a38950bd 100644 --- a/puppet/zulip/files/cron.d/fetch-tor-exit-nodes +++ b/puppet/zulip/files/cron.d/fetch-tor-exit-nodes @@ -2,4 +2,4 @@ SHELL=/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin USER=zulip -0 * * * * zulip /home/zulip/deployments/current/manage.py fetch_tor_exit_nodes +17 * * * * zulip /home/zulip/deployments/current/manage.py fetch_tor_exit_nodes