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
is
@app.on_after_configure.connect def setup_periodic_tasks(sender, **_kwargs): """Register periodic tasks""" # Update the error message caches hourly, if necessary. sender.add_periodic_task( schedule=crontab(minute=11), signature=flowcell_update_outdated_error_caches.s() )
should be
@app.on_after_configure.connect def setup_periodic_tasks(sender, **_kwargs): """Register periodic tasks""" # Update the error message caches hourly, if necessary. sender.add_periodic_task( schedule=crontab(minute=11), sig=flowcell_update_outdated_error_caches.s() )
(s/signature=/sig=/)
s/signature=/sig=/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
is
should be
(
s/signature=/sig=/
)The text was updated successfully, but these errors were encountered: