fix repeating requests

This commit is contained in:
martin-mfg
2025-06-22 07:39:27 +00:00
parent 7cc0217f35
commit 76a9b8395d
+1 -1
View File
@@ -96,7 +96,7 @@ async function makeRequests(urls, poolSize) {
if (idx >= urls.length) {
break;
}
const url = urls[idx];
const url = "http://" + process.env.VERCEL_BRANCH_URL + urls[idx];
try {
if (idx % 10 === 0) {
console.log(`Processing request ${idx + 1} out of ${urls.length}`);