Reduce test payment iterations from 1000 to 100 for performance improvement

This commit is contained in:
Jose Eduardo 2025-08-10 21:07:26 -04:00
parent f0c7df6f6e
commit 471fb2328d

View File

@ -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' \