We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83dd777 commit 96b1210Copy full SHA for 96b1210
etl-api/src/routes/pipelines.rs
@@ -1060,7 +1060,7 @@ pub async fn rollback_table_state(
1060
),
1061
tag = "Pipelines"
1062
)]
1063
-#[post("/pipelines/{pipeline_id}/update-version")]
+#[post("/pipelines/{pipeline_id}/version")]
1064
pub async fn update_pipeline_version(
1065
req: HttpRequest,
1066
pool: Data<PgPool>,
etl-api/tests/support/test_app.rs
@@ -421,7 +421,7 @@ impl TestApp {
421
update_request: &UpdatePipelineVersionRequest,
422
) -> reqwest::Response {
423
self.post_authenticated(format!(
424
- "{}/v1/pipelines/{pipeline_id}/update-version",
+ "{}/v1/pipelines/{pipeline_id}/version",
425
&self.address
426
))
427
.header("tenant_id", tenant_id)
0 commit comments