From 29e6a1fd8dc5506ed4166a2367f1740ab815ddc3 Mon Sep 17 00:00:00 2001 From: hansieodendaal Date: Mon, 9 Feb 2026 12:01:36 +0200 Subject: [PATCH] fix ntp server config --- testing-framework/configs/src/topology/configs/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing-framework/configs/src/topology/configs/time.rs b/testing-framework/configs/src/topology/configs/time.rs index fe6a528..3f29c4e 100644 --- a/testing-framework/configs/src/topology/configs/time.rs +++ b/testing-framework/configs/src/topology/configs/time.rs @@ -8,7 +8,7 @@ use time::OffsetDateTime; const DEFAULT_SLOT_TIME: u64 = 1; const CONSENSUS_SLOT_TIME_VAR: &str = "CONSENSUS_SLOT_TIME"; -const DEFAULT_NTP_SERVER: &str = "pool.ntp.org"; +const DEFAULT_NTP_SERVER: &str = "pool.ntp.org:123"; const DEFAULT_NTP_TIMEOUT: Duration = Duration::from_secs(5); const DEFAULT_NTP_UPDATE_INTERVAL: Duration = Duration::from_secs(16);