PikaLabs/floyd

v2.0.5 is not compatible with v2.0.3

Closed this issue · 1 comments

v2.0.5 is not compatible with v2.0.3 in proto as follow:

message Entry {
enum OpType {
kRead = 0;
kWrite = 1;
kDelete = 2;
kTryLock= 4;
kUnLock = 5;
}
required OpType optype = 1;
// used in key value operator
required uint64 term = 2;
required string key = 3;
optional bytes value = 4;
// used in lock and unlock
optional bytes holder = 5;
optional uint64 lease_end = 6;
}