From cece1505f1f6f5e0fc4f369d4067178521189fc4 Mon Sep 17 00:00:00 2001 From: chubei <914745487@qq.com> Date: Fri, 22 Sep 2023 16:22:33 +0800 Subject: [PATCH] chore: Disable dozer connector checkpointing --- dozer-ingestion/src/connectors/dozer/connector.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dozer-ingestion/src/connectors/dozer/connector.rs b/dozer-ingestion/src/connectors/dozer/connector.rs index bc76955c4c..c11e64b22b 100644 --- a/dozer-ingestion/src/connectors/dozer/connector.rs +++ b/dozer-ingestion/src/connectors/dozer/connector.rs @@ -14,7 +14,6 @@ use dozer_types::{ ingestion_types::{ default_log_options, IngestionMessage, NestedDozerConfig, NestedDozerLogOptions, }, - node::OpIdentifier, serde_json, types::{Operation, Record, Schema}, }; @@ -265,7 +264,7 @@ async fn read_table( .send(IngestionMessage::OperationEvent { table_index, op, - id: Some(OpIdentifier::new(0, op_and_pos.pos)), + id: None, }) .await; }