diff options
author | vijeth-aradhya <vijthaaa@gmail.com> | 2017-06-21 10:00:56 +0530 |
---|---|---|
committer | vijeth-aradhya <vijthaaa@gmail.com> | 2017-06-21 10:03:40 +0530 |
commit | 602cfcb78916ac54bb415d9c2023124b6f3ad5b6 (patch) | |
tree | 042053d534d102679291020a035c56e2714e01cd /mediagoblin/submit/lib.py | |
parent | 5161533a6fb66e24f6906d6476069277d594e738 (diff) | |
download | mediagoblin-602cfcb78916ac54bb415d9c2023124b6f3ad5b6.tar.lz mediagoblin-602cfcb78916ac54bb415d9c2023124b6f3ad5b6.tar.xz mediagoblin-602cfcb78916ac54bb415d9c2023124b6f3ad5b6.zip |
Use tuple as default return type of workflow()
If None, then schedule the old Celery call, else the format
is group and a single task in the tuple. Hence, Celery chord would
be ideal to use.
Closes #4
Diffstat (limited to 'mediagoblin/submit/lib.py')
-rw-r--r-- | mediagoblin/submit/lib.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mediagoblin/submit/lib.py b/mediagoblin/submit/lib.py index b228dbd1..9ec96923 100644 --- a/mediagoblin/submit/lib.py +++ b/mediagoblin/submit/lib.py @@ -20,6 +20,8 @@ from os.path import splitext import six +from celery import chord + from werkzeug.utils import secure_filename from werkzeug.datastructures import FileStorage @@ -271,6 +273,8 @@ def run_process_media(entry, feed_url=None, ProcessMedia().apply_async( [entry.id, feed_url, reprocess_action, reprocess_info], {}, task_id=entry.queued_task_id) + else: + chord(wf[0])(wf[1]) except BaseException as exc: # The purpose of this section is because when running in "lazy" # or always-eager-with-exceptions-propagated celery mode that |