Commit 3d7f8cd7 authored by Ilya Simonov's avatar Ilya Simonov

fix

parent 3bcadbe6
......@@ -8,7 +8,7 @@ from . import models, tasks, utils
@receiver(post_save, sender=models.Video)
def post_save_video(sender, instance, created, **kwargs):
if instance.status == models.PROGRESS and instance.local_file:
tasks.send_video_to_s3.delay((instance.id,))
tasks.send_video_to_s3.apply_async((instance.id,))
@receiver(post_save, sender=models.Playlist)
......
......@@ -18,11 +18,3 @@ app.config_from_object('django.conf:settings', namespace='CELERY')
# Load task modules from all registered Django app configs.
app.autodiscover_tasks()
# app.conf.beat_schedule = {
# # 'send_video_to_s3': {
# # 'task': 'apps.core.tasks.send_video_to_s3',
# # 'schedule': 60 * 5,
# # },
# }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment