From 4ca2c11b20f4f149659c68155f4272539e7842c2 Mon Sep 17 00:00:00 2001 From: Lai Jiang Date: Wed, 3 Mar 2021 09:00:34 -0500 Subject: [PATCH] Use fanout action to run ICANN report upload job in cron (#984) GAE cron only issuse HTTP GET requests to the endpoint in question. This particular only allows POSTs. As a result this cron job never succeeded. This is not a big problem as this job is meant to catch up any unforeseen upload failures and in case it needs to catch up but fails, every month the staging job (which is enqueued corrected by cron) will eventually catch everything to date. --- .../google/registry/env/production/default/WEB-INF/cron.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml b/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml index 59e3634b1..05a16f86e 100644 --- a/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml +++ b/core/src/main/java/google/registry/env/production/default/WEB-INF/cron.xml @@ -280,7 +280,7 @@ - + Checks if the monthly ICANN reports have been successfully uploaded. If they have not, attempts to upload them again. Most of the time, this job should not do anything since the uploads are triggered when the reports are staged.