Skip to content

Instantly share code, notes, and snippets.

@sehmaschine
Created March 2, 2013 13:54
Show Gist options
  • Save sehmaschine/5071098 to your computer and use it in GitHub Desktop.
Save sehmaschine/5071098 to your computer and use it in GitHub Desktop.
celery update_state issue
from tasks import full_export_task
def export_year_zip(user):
full_export_task.update_state(state="PROGRESS", meta={})
task()
def full_export_task(user, task_id=None):
from export.views.user_full_export import export_year_zip
result = export_year_zip(user)
return result
@honza
Copy link

honza commented Mar 2, 2013

I think the problem is that you're calling update_state from outside the @task-decorated function. Not really sure, sorry.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment