Skip to content

Commit 41c4fe0

Browse files
committed
Test
1 parent a12e11d commit 41c4fe0

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/traffic-generator-image-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ name: Create and Push Traffic Generator
55
on:
66
workflow_dispatch:
77
push:
8-
branches:
9-
- main
10-
paths:
11-
- 'sample-apps/traffic-generator/**'
8+
# branches:
9+
# - main
10+
# paths:
11+
# - 'sample-apps/traffic-generator/**'
1212

1313
permissions:
1414
id-token: write

sample-apps/traffic-generator/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ const trafficGenerator = async (interval) => {
4242
`http://${mainEndpoint}/outgoing-http-call`,
4343
`http://${mainEndpoint}/aws-sdk-call?ip=${remoteEndpoint}&testingId=${id}`,
4444
`http://${mainEndpoint}/remote-service?ip=${remoteEndpoint}&testingId=${id}`,
45-
`http://${mainEndpoint}/client-call`
45+
`http://${mainEndpoint}/client-call`,
46+
`http://${mainEndpoint}/mysql`,
4647
];
4748

4849
await sendRequests(urls);

0 commit comments

Comments
 (0)