From e4d013087c5e8d540815fb7e59e0e3718754b017 Mon Sep 17 00:00:00 2001 From: zaaarf Date: Tue, 29 Oct 2024 15:15:25 +0100 Subject: [PATCH] fix: don't overwrite oplog after creating agent id Co-authored-by: alemi --- src/buffer/worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer/worker.rs b/src/buffer/worker.rs index 0124107..48de01b 100644 --- a/src/buffer/worker.rs +++ b/src/buffer/worker.rs @@ -83,7 +83,7 @@ impl BufferController { content_checkout: req_rx, delta_req: recv_rx, callback: cb_rx, - oplog: OpLog::new(), + oplog, branch: Branch::new(), timer: Timer::new(10), // TODO configurable! };