From 3c7a8981ee18113ca369b15398ef5fd16bb58477 Mon Sep 17 00:00:00 2001 From: Louis King Date: Sat, 17 Jan 2026 20:15:46 +0000 Subject: [PATCH] Increased dedup bucket window to 120s --- src/meshcore_hub/common/hash_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meshcore_hub/common/hash_utils.py b/src/meshcore_hub/common/hash_utils.py index 5e75a9a..d172bce 100644 --- a/src/meshcore_hub/common/hash_utils.py +++ b/src/meshcore_hub/common/hash_utils.py @@ -49,7 +49,7 @@ def compute_advertisement_hash( adv_type: Optional[str] = None, flags: Optional[int] = None, received_at: Optional[datetime] = None, - bucket_seconds: int = 30, + bucket_seconds: int = 120, ) -> str: """Compute a deterministic hash for an advertisement. @@ -104,7 +104,7 @@ def compute_telemetry_hash( node_public_key: str, parsed_data: Optional[dict] = None, received_at: Optional[datetime] = None, - bucket_seconds: int = 30, + bucket_seconds: int = 120, ) -> str: """Compute a deterministic hash for a telemetry record.