From 1969f0dfdf640e7bc06b0af70196c4f74c2077f6 Mon Sep 17 00:00:00 2001 From: CaptainB Date: Thu, 1 Dec 2022 18:34:25 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9B=BA=E5=AE=9A=E8=8A=82=E7=82=B9=E6=88=96?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E5=88=86=E9=85=8D=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=95=B0=E6=97=B6=E6=9C=80=E5=A4=A7=E5=B9=B6=E5=8F=91=E6=95=B0?= =?UTF-8?q?=E4=B8=8D=E8=83=BD=E9=99=90=E5=88=B6=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1020219 --user=刘瑞斌 [性能测试]github#20103性能测试设置完资源池中压力机的最大并发数,压测执行时,分配策略选固定节点、自定义策略 没限制住单个压力机的最大并发数 https://www.tapd.cn/55049933/s/1309593 Closes #20103 --- .../business/test/components/PerformancePressureConfig.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/performance-test/frontend/src/business/test/components/PerformancePressureConfig.vue b/performance-test/frontend/src/business/test/components/PerformancePressureConfig.vue index 0f6534617d..4c34e067f9 100644 --- a/performance-test/frontend/src/business/test/components/PerformancePressureConfig.vue +++ b/performance-test/frontend/src/business/test/components/PerformancePressureConfig.vue @@ -720,6 +720,10 @@ export default { } } + if (tg.strategy === "specify") { + this.specifyNodeChange(tg); + } + if (!tg.threadNumber || !tg.duration || !tg.rampUpTime || !tg.step || !tg.iterateNum) { this.$warning(this.$t('load_test.pressure_config_params_is_empty'));