- Change description for the submit_indexnow job from "Refresh sitemap daily" to "Submit Indexnow daily". - Description modification improves clarity on job function. - This adjustment does not affect job scheduling or operations.
25 lines
528 B
YAML
25 lines
528 B
YAML
batch_generate_weather:
|
|
cron: '0 */1 * * *'
|
|
class: BatchGenerateWeatherArtsWorker
|
|
description: "Batch Generate weather arts"
|
|
enabled: true
|
|
|
|
refresh_sitemap:
|
|
cron: '0 5 * * *'
|
|
class: RefreshSitemapWorker
|
|
queue: default
|
|
description: "Refresh sitemap daily"
|
|
enabled: true
|
|
|
|
submit_indexnow:
|
|
cron: '0 5 * * *'
|
|
class: SubmitToIndexnowWorker
|
|
queue: default
|
|
description: "Submit Indexnow daily"
|
|
enabled: true
|
|
|
|
clean_ahoy_data:
|
|
cron: '0 0 * * 0'
|
|
class: CleanAhoyDataWorker
|
|
queue: default
|
|
enabled: true |