Skip to content

Commit e07aba3

Browse files
authored
fix: update shutdown endpoint URL in perf test templates (#2780)
## What issue does this PR close? Closes #2774 ## Change Summary The shutdown API endpoint was renamed from `/api/v1/pipeline-groups/shutdown` to `/api/v1/groups/shutdown`, causing pipeline perf tests to fail with 404 on the shutdown endpoint. This PR updates all 3 perf test template files: - `df-loadgen-steps-docker-filtered.yaml` (3 URLs) - `df-loadgen-steps-docker-otel.yaml` (1 URL) - `df-loadgen-steps-docker.yaml` (3 URLs) ## How are these changes tested? The pipeline perf test CI job will validate the fix. ## Are there any user-facing changes? No.
1 parent dccbcb2 commit e07aba3

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

tools/pipeline_perf_test/test_suites/integration/templates/test_steps/df-loadgen-steps-docker-filtered.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ steps:
116116
run:
117117
pre:
118118
- send_http_request:
119-
url: http://localhost:8085/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
119+
url: http://localhost:8085/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
120120
method: POST
121121
headers:
122122
"Content-Type": "application/json"
@@ -129,7 +129,7 @@ steps:
129129
run:
130130
pre:
131131
- send_http_request:
132-
url: http://localhost:8086/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
132+
url: http://localhost:8086/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
133133
method: POST
134134
headers:
135135
"Content-Type": "application/json"
@@ -142,7 +142,7 @@ steps:
142142
run:
143143
pre:
144144
- send_http_request:
145-
url: http://localhost:8087/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
145+
url: http://localhost:8087/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
146146
method: POST
147147
headers:
148148
"Content-Type": "application/json"

tools/pipeline_perf_test/test_suites/integration/templates/test_steps/df-loadgen-steps-docker-otel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ steps:
9393
run:
9494
pre:
9595
- send_http_request:
96-
url: http://localhost:8085/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
96+
url: http://localhost:8085/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
9797
method: POST
9898
headers:
9999
"Content-Type": "application/json"

tools/pipeline_perf_test/test_suites/integration/templates/test_steps/df-loadgen-steps-docker.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ steps:
118118
run:
119119
pre:
120120
- send_http_request:
121-
url: http://localhost:8085/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
121+
url: http://localhost:8085/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
122122
method: POST
123123
headers:
124124
"Content-Type": "application/json"
@@ -131,7 +131,7 @@ steps:
131131
run:
132132
pre:
133133
- send_http_request:
134-
url: http://localhost:8086/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
134+
url: http://localhost:8086/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
135135
method: POST
136136
headers:
137137
"Content-Type": "application/json"
@@ -144,7 +144,7 @@ steps:
144144
run:
145145
pre:
146146
- send_http_request:
147-
url: http://localhost:8087/api/v1/pipeline-groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
147+
url: http://localhost:8087/api/v1/groups/shutdown?wait=true&timeout_secs={{drain_timeout_secs | default(60)}}
148148
method: POST
149149
headers:
150150
"Content-Type": "application/json"

0 commit comments

Comments
 (0)