diff --git a/CHANGELOG.md b/CHANGELOG.md index 738439f18cc..13346328230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to the versioning scheme outlined in the [README.md](README.md). +## Unreleased + +### Fixed + +- Fixed a typo in the metrics_identifier route from `/v2/stackedb/:principal/:contract_name/replicas` to `/v2/stackerdb/:principal/:contract_name/replicas`. Note: This may be a breaking change for systems relying on the incorrect route. Please update any metrics tools accordingly. + ## [3.2.0.0.0] ### Added diff --git a/stackslib/src/net/api/liststackerdbreplicas.rs b/stackslib/src/net/api/liststackerdbreplicas.rs index 4af8f6ad0a2..7ba2fb0b052 100644 --- a/stackslib/src/net/api/liststackerdbreplicas.rs +++ b/stackslib/src/net/api/liststackerdbreplicas.rs @@ -62,7 +62,7 @@ impl HttpRequest for RPCListStackerDBReplicasRequestHandler { } fn metrics_identifier(&self) -> &str { - "/v2/stackedb/:principal/:contract_name/replicas" + "/v2/stackerdb/:principal/:contract_name/replicas" } /// Try to decode this request.