Fix AntiEntropyConfig initialization with missing TTL fields
The expires_at_field and ttl_enabled fields were added to the AntiEntropyConfig struct but the initialization in AntiEntropyWorker::new was not updated to include them, causing a compilation error. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
d206e8184f
commit
a83549cc5e
1 changed files with 2 additions and 0 deletions
|
|
@ -298,6 +298,8 @@ impl AntiEntropyWorker {
|
|||
fingerprint_batch_size: 1000,
|
||||
auto_repair: true,
|
||||
updated_at_field: "_miroir_updated_at".to_string(),
|
||||
expires_at_field: "_miroir_expires_at".to_string(),
|
||||
ttl_enabled: false,
|
||||
};
|
||||
|
||||
let node_client = HttpNodeClient::new(node_master_key);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue