We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kwargs
Re: #30, this would have been caught had there been tests that exercise all the different options a Schedule can take.
Schedule
Doc references:
func (str) – the function to schedule. Dotted strings only. args – arguments for the scheduled function. name (str) – An optional name for your schedule. hook (str) – optional result hook function. Dotted strings only. schedule_type (str) – (O)nce, M(I)nutes, (H)ourly, (D)aily, (W)eekly, (M)onthly, (Q)uarterly, (Y)early or (C)ron Schedule.TYPE minutes (int) – Number of minutes for the Minutes type. cron (str) – Cron expression for the Cron type. repeats (int) – Number of times to repeat schedule. -1=Always, 0=Never, n =n. next_run (datetime) – Next or first scheduled execution datetime. cluster (str) – optional cluster name. Task will be executed only on a cluster with a matching name. intended_date_kwarg (str) – optional identifier to pass intended schedule date. q_options (dict) – options passed to async_task for this schedule kwargs – optional keyword arguments for the scheduled function.
func (str) – the function to schedule. Dotted strings only.
args – arguments for the scheduled function.
name (str) – An optional name for your schedule.
hook (str) – optional result hook function. Dotted strings only.
schedule_type (str) – (O)nce, M(I)nutes, (H)ourly, (D)aily, (W)eekly, (M)onthly, (Q)uarterly, (Y)early or (C)ron Schedule.TYPE
minutes (int) – Number of minutes for the Minutes type.
cron (str) – Cron expression for the Cron type.
repeats (int) – Number of times to repeat schedule. -1=Always, 0=Never, n =n.
next_run (datetime) – Next or first scheduled execution datetime.
cluster (str) – optional cluster name. Task will be executed only on a cluster with a matching name.
intended_date_kwarg (str) – optional identifier to pass intended schedule date.
q_options (dict) – options passed to async_task for this schedule
kwargs – optional keyword arguments for the scheduled function.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Re: #30, this would have been caught had there been tests that exercise all the different options a
Schedule
can take.Doc references:
The text was updated successfully, but these errors were encountered: