- Changed description for the 'batch_generate_weather' job from 'Generate weather arts every 2 hours' to 'Batch Generate weather arts'. - This change provides a more concise description of the job's purpose without altering its functionality.
18 lines
387 B
YAML
18 lines
387 B
YAML
batch_generate_weather:
|
|
cron: '0 8,18 * * *'
|
|
class: BatchGenerateWeatherArtsWorker
|
|
description: "Batch Generate weather arts"
|
|
enabled: true
|
|
|
|
refresh_sitemap:
|
|
cron: '0 5 * * *'
|
|
class: RefreshSitemapWorker
|
|
queue: default
|
|
description: "Refresh sitemap daily"
|
|
enabled: true
|
|
|
|
clean_ahoy_data:
|
|
cron: '0 0 * * 0'
|
|
class: CleanAhoyDataWorker
|
|
queue: default
|
|
enabled: true |