Skip to content

Commit

Permalink
expire celery results after one hour not three
Browse files Browse the repository at this point in the history
  • Loading branch information
hpiwowar committed Sep 19, 2014
1 parent cb238b8 commit 3d010e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celeryconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

CELERY_ACCEPT_CONTENT = ['pickle', 'json']
CELERY_ENABLE_UTC = True
CELERY_TASK_RESULT_EXPIRES = 60*60*3 # 3 hours
CELERY_TASK_RESULT_EXPIRES = 60*60*1 # 1 hour

CELERY_ACKS_LATE = True

Expand Down

0 comments on commit 3d010e8

Please sign in to comment.