Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 479 Bytes

File metadata and controls

19 lines (16 loc) · 479 Bytes
id add_custom_jobs
title Add Custom Jobs
sidebar_label Add Custom Jobs

No scheduled job should be added in the main repo to ensure it is generalized. Please use the plugin repo to add custom jobs.

When adding a job, use the following format:

    '[name of the task]': {
        'task': '[import path of the task, e.g. tasks_plugin.module.function]',
        'schedule': '0 0 * * *',  # cron schedule
        'args': args,
        'kwargs': kwargs,
    },