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:
jedarden 2026-05-23 08:54:27 -04:00
parent d206e8184f
commit a83549cc5e

View file

@ -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);