微信小程序页面迁移校验之前 P5任务处理之前

This commit is contained in:
Neo
2026-03-09 01:19:21 +08:00
parent 263bf96035
commit 6e20987d2f
1112 changed files with 153824 additions and 219694 deletions

View File

@@ -124,6 +124,16 @@ class CLIBuilder:
if config.store_id is not None:
cmd.extend(["--store-id", str(config.store_id)])
# -- Pipeline 调优参数 --
if config.pipeline_workers is not None:
cmd.extend(["--pipeline-workers", str(config.pipeline_workers)])
if config.pipeline_batch_size is not None:
cmd.extend(["--pipeline-batch-size", str(config.pipeline_batch_size)])
if config.pipeline_rate_min is not None:
cmd.extend(["--pipeline-rate-min", str(config.pipeline_rate_min)])
if config.pipeline_rate_max is not None:
cmd.extend(["--pipeline-rate-max", str(config.pipeline_rate_max)])
# -- 额外参数(只传递 CLI 支持的参数) --
for key, value in config.extra_args.items():
if value is not None and key in CLI_SUPPORTED_ARGS: