fix unit test failures

This commit is contained in:
boqiu 2024-10-24 20:01:57 +08:00 committed by Peter Zhang
parent f9ef93dd9c
commit 9fde9a7239
2 changed files with 1 additions and 5 deletions

View File

@ -89,9 +89,6 @@ pub struct SerialSyncController {
/// Cache for storing and serving gossip messages. /// Cache for storing and serving gossip messages.
file_location_cache: Arc<FileLocationCache>, file_location_cache: Arc<FileLocationCache>,
/// Whether to find files from neighbors only.
neighbors_only: bool,
} }
impl SerialSyncController { impl SerialSyncController {
@ -118,7 +115,6 @@ impl SerialSyncController {
ctx, ctx,
store, store,
file_location_cache, file_location_cache,
neighbors_only: true,
} }
} }