Skip to content

Commit 8eb519b

Browse files
retry with google
1 parent 020713d commit 8eb519b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integration-tests/common/LoadTest.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { TaskType } from "../../src/common";
66
// --- Configuration for the Load Test ---
77
// The number of requests to send in parallel.
88
// Adjust this number to find the breaking point of your load balancer.
9-
const CONCURRENT_REQUESTS = 50;
9+
const CONCURRENT_REQUESTS = 100;
1010
const TEST_TIMEOUT = 180000 * 10; // 180 seconds
1111

1212
describe("Load Test for ECONNRESET", () => {
@@ -49,7 +49,7 @@ describe("Load Test for ECONNRESET", () => {
4949
for (let i = 0; i < CONCURRENT_REQUESTS; i++) {
5050
// Start the request but don't wait for it to finish here.
5151
//requestPromises.push(executor.getWorkflow(executionId, false));
52-
requestPromises.push(fetch(`https://siliconmint-dev-5x.orkesconductor.io/`));
52+
requestPromises.push(fetch(`https://google.com/`));
5353

5454
// if (i < CONCURRENT_REQUESTS - 1) {
5555
// // Wait 100ms before starting the next request.

0 commit comments

Comments
 (0)