Skip to content

Commit

Permalink
continue to read messages instead of returning on exporter (#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
y0sher authored Jul 16, 2024
1 parent d124eff commit e854033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/validator/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ func (c *controller) handleRouterMessages() {
vc.HandleMessage(c.logger, msg)
} else if c.validatorOptions.Exporter {
if msg.MsgType != spectypes.SSVConsensusMsgType && msg.MsgType != spectypes.SSVPartialSignatureMsgType {
return
continue
}
if !c.messageWorker.TryEnqueue(msg) { // start to save non committee decided messages only post fork
c.logger.Warn("Failed to enqueue post consensus message: buffer is full")
Expand Down

0 comments on commit e854033

Please sign in to comment.