Skip to content

Commit dc53adf

Browse files
committed
Change out of sequence numbers message to warning
Change-Id: Ia11c7ace7a710986dd87059ef5affb897200aa2a Signed-off-by: Kostas Christidis <[email protected]>
1 parent 9de36e3 commit dc53adf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

consensus/pbft/pbft-core.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,8 @@ func (instance *pbftCore) sendPrePrepare(reqBatch *RequestBatch, digest string)
635635
}
636636

637637
if !instance.inWV(instance.view, n) || n > instance.h+instance.L/2 {
638-
logger.Debugf("Replica %d is primary, not sending pre-prepare for request batch %s because it is out of sequence numbers", instance.id, digest)
638+
// We don't have the necessary stable certificates to advance our watermarks
639+
logger.Warningf("Primary %d not sending pre-prepare for batch %s - out of sequence numbers", instance.id, digest)
639640
return
640641
}
641642

0 commit comments

Comments
 (0)