You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2022/12/02 03:09:23 UTC

[iotdb] branch rel/1.0 updated: [To rel/1.0] Fix snapshot bug (#8296)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch rel/1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/1.0 by this push:
     new 8e262dc538 [To rel/1.0] Fix snapshot bug (#8296)
8e262dc538 is described below

commit 8e262dc5382b0563b4458a04c84ca21c46290432
Author: YongzaoDan <33...@users.noreply.github.com>
AuthorDate: Fri Dec 2 11:09:17 2022 +0800

    [To rel/1.0] Fix snapshot bug (#8296)
---
 .../iotdb/confignode/persistence/executor/ConfigPlanExecutor.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigPlanExecutor.java b/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigPlanExecutor.java
index cda0870cfb..3c5e35f655 100644
--- a/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigPlanExecutor.java
+++ b/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigPlanExecutor.java
@@ -178,7 +178,7 @@ public class ConfigPlanExecutor {
     this.snapshotProcessorList.add(triggerInfo);
 
     this.syncInfo = syncInfo;
-    this.snapshotProcessorList.add(triggerInfo);
+    this.snapshotProcessorList.add(syncInfo);
 
     this.cqInfo = cqInfo;
     this.snapshotProcessorList.add(cqInfo);