diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-18 16:46:53 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-18 16:46:53 +0000 |
| commit | 6ad7136027c56c3a523278d90ade3da018e39273 (patch) | |
| tree | dad50501b2085c320a9316e17928b584cc8ec80b /src/sync | |
| parent | 11a656fa96d6f60e2d8e8fd31657e24d6cc7cf21 (diff) | |
sync: turn off negentropy and fix some tests
Diffstat (limited to 'src/sync')
| -rw-r--r-- | src/sync/mod.rs | 5 |
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(); |