From 3d010e8a3c2544c0c6fdc07ec610d6bc23fbfe88 Mon Sep 17 00:00:00 2001 From: Heather Piwowar Date: Fri, 19 Sep 2014 12:25:19 -0700 Subject: [PATCH] expire celery results after one hour not three --- celeryconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celeryconfig.py b/celeryconfig.py index 64a678e4..d05b05b5 100644 --- a/celeryconfig.py +++ b/celeryconfig.py @@ -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