1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-08 15:05:22 +02:00

Add security health checks to schedule

This commit is contained in:
Zach Gollwitzer 2025-05-22 12:00:50 -04:00
parent 2183232aec
commit 75e624cfbe

View file

@ -1,5 +1,5 @@
import_market_data: import_market_data:
cron: "0 22 * * 1-5" # 5:00 PM EST / 6:00 PM EDT (NY time) cron: "0 22 * * 1-5" # 5:00 PM EST / 6:00 PM EDT (NY time) Monday through Friday
class: "ImportMarketDataJob" class: "ImportMarketDataJob"
queue: "scheduled" queue: "scheduled"
description: "Imports market data daily at 5:00 PM EST (1 hour after market close)" description: "Imports market data daily at 5:00 PM EST (1 hour after market close)"
@ -12,3 +12,9 @@ clean_syncs:
class: "SyncCleanerJob" class: "SyncCleanerJob"
queue: "scheduled" queue: "scheduled"
description: "Cleans up stale syncs" description: "Cleans up stale syncs"
run_security_health_checks:
cron: "0 2 * * 1-5" # 2:00 AM EST / 3:00 AM EDT (NY time) Monday through Friday
class: "SecurityHealthCheckJob"
queue: "scheduled"
description: "Runs security health checks to detect issues with security data"