微信小程序页面迁移校验之前 P5任务处理之前
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user