Skip to content

Commit

Permalink
disable archiving celery results
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Jan 12, 2021
1 parent 0c80cd0 commit 868139b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion share/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ def archive(self):
logger.debug('No %s tasks eligible for archival', name)
continue

self.archive_queryset(name, queryset)
# archive? we don't need no stinkin archive
# TODO either delete the code or make archiving work again
# self.archive_queryset(name, queryset)
self.delete_queryset(queryset)

def archive_queryset(self, task_name, queryset):
Expand Down

0 comments on commit 868139b

Please sign in to comment.