From 664fb0fbfd21a25d1f86938a186f6ec9cea6d882 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 29 Dec 2015 10:01:42 +0100 Subject: Mark commands with whether they need to be replayed This way we don't have to try to figure out whether a change is coming from the source already. --- common/metadata.fbs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'common/metadata.fbs') diff --git a/common/metadata.fbs b/common/metadata.fbs index 1455238..0a709fe 100644 --- a/common/metadata.fbs +++ b/common/metadata.fbs @@ -4,8 +4,7 @@ enum Operation : byte { Creation = 1, Modification, Removal } table Metadata { revision: ulong; - processed: bool = true; - processingProgress: [string]; + replayToSource: bool = true; operation: Operation = Modification; } -- cgit v1.2.3