We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a1a7a commit 9817fb2Copy full SHA for 9817fb2
1 file changed
sqlchain/chain.go
@@ -693,7 +693,9 @@ func (c *Chain) mainCycle(ctx context.Context) {
693
return
694
default:
695
if err := c.syncHead(); err != nil {
696
- c.logEntry().WithError(err).Error("failed to sync head")
+ if err != ErrInitiating {
697
+ c.logEntry().WithError(err).Error("failed to sync head")
698
+ }
699
continue
700
}
701
if t, d := c.rt.nextTick(); d > 0 {
0 commit comments