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
I have a function, when I run it with async_task:
async_task('sms.tasks.send', username=username, password=password, text=text, to=to, path=path, )
everything is ok, but when I run this with schedule:
schedule('sms.tasks.send', username=username, password=password, text=text, to=to, path=path, next_run=scheduled_time)
It doesn't work! It's like kwargs are not passed in schedule. Can anyone guide me?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a function, when I run it with async_task:
everything is ok, but when I run this with schedule:
It doesn't work! It's like kwargs are not passed in schedule.
Can anyone guide me?
The text was updated successfully, but these errors were encountered: