From c4441255f2abb51a2428245b9a6d03be3597aaf8 Mon Sep 17 00:00:00 2001 From: Sergey Timoshin Date: Mon, 16 Sep 2024 15:13:18 +0700 Subject: [PATCH] Update pushgateway URL in test utils configuration This change sets the `pushgateway_url` to `None` in the test configuration. This will prevent attempts to push metrics to Pushgateway during test runs, ensuring tests do not interact with external services. --- forester/tests/test_utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forester/tests/test_utils.rs b/forester/tests/test_utils.rs index 92f9310b5a..68dfc82fdc 100644 --- a/forester/tests/test_utils.rs +++ b/forester/tests/test_utils.rs @@ -81,7 +81,7 @@ pub fn forester_config() -> ForesterConfig { indexer_url: Some("http://localhost:8784".to_string()), prover_url: Some("http://localhost:3001".to_string()), photon_api_key: None, - pushgateway_url: Some("http://localhost:9092/metrics/job/forester".to_string()), + pushgateway_url: None, }, retry_config: Default::default(), queue_config: Default::default(),