upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/sync
diff options
context:
space:
mode:
Diffstat (limited to 'src/sync')
-rw-r--r--src/sync/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sync/mod.rs b/src/sync/mod.rs
index c3c598a..6adfc55 100644
--- a/src/sync/mod.rs
+++ b/src/sync/mod.rs
@@ -2016,8 +2016,9 @@ impl SyncManager {
2016 }; 2016 };
2017 2017
2018 // Check if we should use negentropy 2018 // Check if we should use negentropy
2019 let use_negentropy = 2019 // TODO once we have setup our new tests we will re-enable this and fix our implementation
2020 !self.config.sync_disable_negentropy && connection.supports_negentropy().await; 2020 let use_negentropy = false;
2021 // !self.config.sync_disable_negentropy && connection.supports_negentropy().await;
2021 2022
2022 // Generate batch ID 2023 // Generate batch ID
2023 let batch_id = self.next_batch_id(); 2024 let batch_id = self.next_batch_id();