def scheduled_job()

in src/redash_stmo/data_sources/health.py [0:0]


def scheduled_job():
    """Add the update_health_status task to a list of scheduled jobs"""
    return {
        "func": update_health_status,
        "interval": timedelta(minutes=settings.HEALTH_QUERIES_REFRESH_SCHEDULE),
    }