Mercurial > public > sg101
annotate messages/tasks.py @ 896:0054a4a88c1c
Remove checking for https availability.
This seems to take quite a while, plus Python doesn't validate the cert, so we
could end up with dodgy sites.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 25 Feb 2015 21:09:41 -0600 |
parents | aeafbf3ecebf |
children |
rev | line source |
---|---|
bgneal@518 | 1 """ |
bgneal@518 | 2 Celery tasks for the messages application. |
bgneal@518 | 3 |
bgneal@518 | 4 """ |
bgneal@750 | 5 from __future__ import absolute_import |
bgneal@518 | 6 |
bgneal@750 | 7 from celery import shared_task |
bgneal@518 | 8 |
bgneal@750 | 9 |
bgneal@750 | 10 @shared_task |
bgneal@518 | 11 def purge_messages(): |
bgneal@518 | 12 """ |
bgneal@518 | 13 Task to purge messages that have been deleted by both sender & receiver. |
bgneal@518 | 14 |
bgneal@518 | 15 """ |
bgneal@518 | 16 from messages.management.commands.purge_messages import Command |
bgneal@518 | 17 |
bgneal@518 | 18 command = Command() |
bgneal@518 | 19 command.execute() |