From 471fb2328dfdc1428462a748460a07b1af46ee13 Mon Sep 17 00:00:00 2001 From: jos3duardo Date: Sun, 10 Aug 2025 21:07:26 -0400 Subject: [PATCH] Reduce test payment iterations from 1000 to 100 for performance improvement --- test-payments.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-payments.sh b/test-payments.sh index 95cc6c9..fd54d8c 100755 --- a/test-payments.sh +++ b/test-payments.sh @@ -1,5 +1,5 @@ #!/bin/sh -for i in $(seq 1 1000); do +for i in $(seq 1 100); do amount=$(awk -v min=10 -v max=100 'BEGIN{srand(); printf "%.2f", min+rand()*(max-min)}') correlationId=$(uuidgen) curl --location 'http://192.168.1.126:9999/payments' \