From 92477434c6f46dd89bfcaff01639301643dfcc4e Mon Sep 17 00:00:00 2001 From: Jan Segre Date: Fri, 3 Jan 2025 17:15:22 +0100 Subject: [PATCH] chore(p2p): decrease p2p.max_enabled_sync's default value: 16 -> 8 --- hathor/conf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hathor/conf/settings.py b/hathor/conf/settings.py index 9fd45bc3f..654ca398f 100644 --- a/hathor/conf/settings.py +++ b/hathor/conf/settings.py @@ -403,7 +403,7 @@ def GENESIS_TX2_TIMESTAMP(self) -> int: PARTIALLY_VALIDATED_ID: bytes = b'pending-validation' # Maximum number of sync running simultaneously. - MAX_ENABLED_SYNC: int = 16 + MAX_ENABLED_SYNC: int = 8 # Time to update the peers that are running sync. SYNC_UPDATE_INTERVAL: int = 10 * 60 # seconds