From d3f4a675db5670efbe8b08c4066095226a928c30 Mon Sep 17 00:00:00 2001 From: puke <1129090915@qq.com> Date: Thu, 20 Nov 2025 14:42:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80RUNNING=5FHUB=5FPARALLEL=5FLI?= =?UTF-8?q?MIT=E6=8E=A7=E5=88=B6=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pixelle_video/pipelines/standard.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pixelle_video/pipelines/standard.py b/pixelle_video/pipelines/standard.py index af10369..ee3e0a8 100644 --- a/pixelle_video/pipelines/standard.py +++ b/pixelle_video/pipelines/standard.py @@ -41,9 +41,7 @@ from pixelle_video.utils.content_generators import ( ) -# Whether to enable parallel processing for RunningHub workflows -RUNNING_HUB_PARALLEL_ENABLED = True -# Parallel limit for RunningHub workflows +# Parallel limit for RunningHub workflows (Call by sequential if set to 1) RUNNING_HUB_PARALLEL_LIMIT = 1 @@ -379,7 +377,7 @@ class StandardPipeline(BasePipeline): (config.image_workflow and config.image_workflow.startswith("runninghub/")) ) - if is_runninghub and RUNNING_HUB_PARALLEL_ENABLED and RUNNING_HUB_PARALLEL_LIMIT > 1: + if is_runninghub and RUNNING_HUB_PARALLEL_LIMIT > 1: logger.info(f"🚀 Using parallel processing for RunningHub workflows (max {RUNNING_HUB_PARALLEL_LIMIT} concurrent)") logger.info(f" TTS: {'runninghub' if config.tts_workflow and config.tts_workflow.startswith('runninghub/') else 'local'}") logger.info(f" Image: {'runninghub' if config.image_workflow and config.image_workflow.startswith('runninghub/') else 'local'}")