Skip to content

Commit 03df5a3

Browse files
author
Loong
committed
Merge branch 'fix/resync-replay' into fix/hash-using-surge
2 parents 20b34c2 + 1aa70c9 commit 03df5a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

replica/replica.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,11 @@ func (replica *Replica) HandleMessage(m Message) {
171171
// message passing.
172172
now := block.Timestamp(time.Now().Unix())
173173
timestamp := m.Message.(*process.Resync).Timestamp()
174-
if now < timestamp-10 {
175-
replica.options.Logger.Debugf("ignore message: resync timestamp=%v compared to now=%v", timestamp, now)
176-
return
174+
delta := now - timestamp
175+
if delta < 0 {
176+
delta = -delta
177177
}
178-
if now > timestamp+10 {
178+
if delta > 10 {
179179
replica.options.Logger.Debugf("ignore message: resync timestamp=%v compared to now=%v", timestamp, now)
180180
return
181181
}

0 commit comments

Comments
 (0)