diff --git a/libs/client-api/src/collab_sync/pending_msg.rs b/libs/client-api/src/collab_sync/pending_msg.rs index 5107f3b0..fa0f4f4a 100644 --- a/libs/client-api/src/collab_sync/pending_msg.rs +++ b/libs/client-api/src/collab_sync/pending_msg.rs @@ -87,7 +87,7 @@ where self.state = new_state; trace!( - "oid:{}|msg_id:{},state:{:?}", + "oid:{}|msg_id:{},msg state:{:?}", self.msg.collab_object_id(), self.msg_id, self.state diff --git a/libs/realtime/src/collaborate/group.rs b/libs/realtime/src/collaborate/group.rs index 63b9ebe9..87682a58 100644 --- a/libs/realtime/src/collaborate/group.rs +++ b/libs/realtime/src/collaborate/group.rs @@ -80,7 +80,7 @@ where match self.group_by_object_id.try_write() { Ok(mut group_by_object_id) => { group_by_object_id.remove(object_id); - // self.storage.remove_collab_cache(object_id).await; + self.storage.remove_collab_cache(object_id).await; }, Err(err) => error!("Failed to acquire write lock to remove group: {:?}", err), }