mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
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.
This commit is contained in:
parent
a7f4a885b1
commit
a3ea1d96b4
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@
|
||||||
</cron>
|
</cron>
|
||||||
|
|
||||||
<cron>
|
<cron>
|
||||||
<url><![CDATA[/_dr/task/icannReportingUpload]]></url>
|
<url><![CDATA[/_dr/cron/fanout?queue=retryable-cron-tasks&endpoint=/_dr/task/icannReportingUpload&runInEmpty]]></url>
|
||||||
<description>
|
<description>
|
||||||
Checks if the monthly ICANN reports have been successfully uploaded. If they have not, attempts to upload them again.
|
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.
|
Most of the time, this job should not do anything since the uploads are triggered when the reports are staged.
|
||||||
|
|
Loading…
Add table
Reference in a new issue