From 4460d803fd686e03d509c708bb9acc14d7da0213 Mon Sep 17 00:00:00 2001 From: Chandrakala Subramanyam Date: Fri, 5 Jan 2024 12:53:32 +0530 Subject: [PATCH] Updated to use the variable name Signed-off-by: Chandrakala Subramanyam --- .../scale_test/run_bulk_scalability_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/remote_monitoring_tests/scale_test/run_bulk_scalability_test.sh b/tests/scripts/remote_monitoring_tests/scale_test/run_bulk_scalability_test.sh index e5bc153ec..9b349b24b 100755 --- a/tests/scripts/remote_monitoring_tests/scale_test/run_bulk_scalability_test.sh +++ b/tests/scripts/remote_monitoring_tests/scale_test/run_bulk_scalability_test.sh @@ -149,11 +149,11 @@ declare -a pid_array=() for ((loop=1; loop<=num_clients; loop++)); do - name="scaletest${num_exps}-${num_days_of_res}days-${loop}" + name="scaletest${num_exps}-${loop}" logfile="${SCALE_LOG_DIR}/${name}.log" echo "logfile = $logfile" - nohup ./rosSimulationScalabilityWrapper.sh --ip "${IP}" --port "${PORT}" --name scaletest${num_exps}-${num_days_of_res}days-${loop} --count ${num_exps},${results_count} --minutesjump ${minutes_jump} --initialstartdate ${initial_start_date} --limitdays ${num_days_of_res} --intervalhours ${interval_hours} --clientthread ${loop} --prometheusserver ${prometheus_server} --outputdir ${RESULTS_DIR} >> ${logfile} 2>&1 & + nohup ./rosSimulationScalabilityWrapper.sh --ip "${IP}" --port "${PORT}" --name ${name} --count ${num_exps},${results_count} --minutesjump ${minutes_jump} --initialstartdate ${initial_start_date} --limitdays ${num_days_of_res} --intervalhours ${interval_hours} --clientthread ${loop} --prometheusserver ${prometheus_server} --outputdir ${RESULTS_DIR} >> ${logfile} 2>&1 & pid_array+=($!)