From d4f0b4772b2f56cc4cb97551abf1052e6118d72c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan-=C8=98tefan=20Neac=C8=99u?= Date: Mon, 6 Mar 2023 14:00:14 +0200 Subject: [PATCH] Fix Service stats address --- common/statistics/src/api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/statistics/src/api.rs b/common/statistics/src/api.rs index 6d88cb8234..57c0f6f2c6 100644 --- a/common/statistics/src/api.rs +++ b/common/statistics/src/api.rs @@ -5,7 +5,7 @@ use crate::error::StatsError; use crate::StatsMessage; pub const DEFAULT_STATISTICS_SERVICE_ADDRESS: &str = "127.0.0.1"; -pub const DEFAULT_STATISTICS_SERVICE_PORT: u16 = 8090; +pub const DEFAULT_STATISTICS_SERVICE_PORT: u16 = 8091; pub const STATISTICS_SERVICE_VERSION: &str = "/v1"; pub const STATISTICS_SERVICE_API_STATISTICS: &str = "statistic";