Fix typo in prometheus-metrics/src/main.rs (#2160)

This commit is contained in:
Igor Shevchenko 2023-08-08 03:11:01 -05:00 committed by GitHub
parent e8cf5f4f0e
commit 9dbfdbb4df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ async fn start_main_server() {
async fn start_metrics_server() {
let app = metrics_app();
// NOTE: expose metrics enpoint on a different port
// NOTE: expose metrics endpoint on a different port
let listener = tokio::net::TcpListener::bind("127.0.0.1:3001")
.await
.unwrap();