From 6cc79bc696ef280d13f4b2ba952c75d04ddaa5b5 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Wed, 30 Apr 2025 08:37:35 +0200 Subject: [PATCH] react slower --- src/table/data.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/table/data.rs b/src/table/data.rs index 82c1575d..4d8e5e94 100644 --- a/src/table/data.rs +++ b/src/table/data.rs @@ -21,10 +21,10 @@ use crate::replication::*; use crate::schema::*; use crate::util::*; -pub(crate) const MERKLE_SLEEP_INITIAL: Duration = Duration::from_micros(10); +pub(crate) const MERKLE_SLEEP_INITIAL: Duration = Duration::from_micros(1); pub(crate) const MERKLE_SLEEP_MAX: Duration = Duration::from_secs(2); -pub(crate) const MERKLE_SLEEP_ADD_DECREASE: Duration = Duration::from_micros(10); -pub(crate) const MERKLE_SLEEP_MULT_INCREASE: f32 = 1.2; +pub(crate) const MERKLE_SLEEP_ADD_DECREASE: Duration = Duration::from_micros(1); +pub(crate) const MERKLE_SLEEP_MULT_INCREASE: f32 = 1.1; pub struct TableData { system: Arc,