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

fix start upload video to s3

parent e401f90a
...@@ -8,7 +8,7 @@ from . import models, tasks, utils ...@@ -8,7 +8,7 @@ from . import models, tasks, utils
@receiver(post_save, sender=models.Video) @receiver(post_save, sender=models.Video)
def post_save_video(sender, instance, created, **kwargs): def post_save_video(sender, instance, created, **kwargs):
if instance.status == models.PROGRESS and instance.local_file: if instance.status == models.PROGRESS and instance.local_file:
tasks.send_video_to_s3.apply_async((instance.id,)) tasks.send_video_to_s3.delay((instance.id,))
@receiver(post_save, sender=models.Playlist) @receiver(post_save, sender=models.Playlist)
......
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