From aa4f8532bbd747456751e108d9ca6e61e68cbd2b Mon Sep 17 00:00:00 2001 From: wangbo Date: Mon, 3 Aug 2026 11:06:28 +0800 Subject: [PATCH] =?UTF-8?q?test(acceptance):=20=E6=89=A9=E5=A4=A7=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E5=AE=B9=E9=87=8F=E7=AA=81=E5=8F=91=E6=A0=B7=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将单节点视频容量阶梯的任务数提高到每槽位 6 个且最低 64 个,确保自适应容量达到目标后仍有足够排队任务用于观测真实运行峰值。\n\n已执行 bash -n、ShellCheck 和生产验收脚本测试。 --- scripts/cluster/run-production-acceptance.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cluster/run-production-acceptance.sh b/scripts/cluster/run-production-acceptance.sh index c037bd6..63f6677 100755 --- a/scripts/cluster/run-production-acceptance.sh +++ b/scripts/cluster/run-production-acceptance.sh @@ -3817,8 +3817,8 @@ run_single_node_acceptance() { local slots requests for slots in "${single_node_video_slots[@]}"; do apply_single_node_capacity "$slots" || break - requests=$((slots * 3)) - (( requests < 32 )) && requests=32 + requests=$((slots * 6)) + (( requests < 64 )) && requests=64 if ! run_single_node_profile image-video video-capacity "$slots" "$requests"; then break fi