From a81821f8537362de70327fd3695ff8981c17144b Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Sun, 14 Jun 2015 22:25:35 +0100 Subject: [PATCH] Removed duplicate celery task call --- api/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/views.py b/api/views.py index 4e3c529..429e7d9 100755 --- a/api/views.py +++ b/api/views.py @@ -169,7 +169,6 @@ class PartialMixUploadView(views.APIView): try: create_waveform_task.delay(in_file=os.path.join(file_storage.base_location, cache_file), uid=uid) - create_waveform_task.delay(in_file=os.path.join(file_storage.base_location, cache_file), uid=uid) except Exception, ex: response = \ 'Unable to connect to waveform generation task, there may be a delay in getting your mix online'