From fc70256152022990acd1f7a1e214279ef1623a99 Mon Sep 17 00:00:00 2001 From: puke <1129090915@qq.com> Date: Thu, 20 Nov 2025 00:55:32 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E7=A6=81=E7=94=A8runninghub?= =?UTF-8?q?=E7=9A=84=E5=B9=B6=E5=8F=91(=E9=80=82=E9=85=8D=E7=BB=9D?= =?UTF-8?q?=E5=A4=A7=E5=A4=9A=E6=95=B0=E7=9A=84=E6=99=AE=E9=80=9Arh?= =?UTF-8?q?=E4=BC=9A=E5=91=98=E5=9C=BA=E6=99=AF)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pixelle_video/pipelines/standard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixelle_video/pipelines/standard.py b/pixelle_video/pipelines/standard.py index aafcb4f..af10369 100644 --- a/pixelle_video/pipelines/standard.py +++ b/pixelle_video/pipelines/standard.py @@ -44,7 +44,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 -RUNNING_HUB_PARALLEL_LIMIT = 5 +RUNNING_HUB_PARALLEL_LIMIT = 1 class StandardPipeline(BasePipeline): @@ -379,7 +379,7 @@ class StandardPipeline(BasePipeline): (config.image_workflow and config.image_workflow.startswith("runninghub/")) ) - if is_runninghub and RUNNING_HUB_PARALLEL_ENABLED: + if is_runninghub and RUNNING_HUB_PARALLEL_ENABLED 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'}")