From e37d20a00dfbc7a193d74ce6fd6a5b33a6c62d9c Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 9 Feb 2023 16:55:53 +0100 Subject: [PATCH] copr-be-dev: run the ping script on devel with the same cadence That script is a no-op, so it doesn't hurt the performance nor the cloud budget. --- roles/copr/backend/tasks/copr-ping.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/copr/backend/tasks/copr-ping.yml b/roles/copr/backend/tasks/copr-ping.yml index be38f865c1..8e2df53d2a 100644 --- a/roles/copr/backend/tasks/copr-ping.yml +++ b/roles/copr/backend/tasks/copr-ping.yml @@ -88,8 +88,8 @@ ansible.builtin.cron: # NOTE: sync with CRON_PERIOD in roles/copr/backend/templates/copr-ping-check.py.j2 name: build the ping package - minute: "{% if devel %}0{% else %}0,30{% endif %}" - hour: "{% if devel %}1{% else %}*{% endif %}" + minute: "0,30" + hour: "*" user: copr-ping job: "{{ ping_homedir }}/{{ ping_script }}" tags: copr_ping