We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf862c commit 32c9d03Copy full SHA for 32c9d03
module/state_synchronization/indexer/indexer.go
@@ -158,6 +158,9 @@ func (i *Indexer) onBlockIndexed() error {
158
highestIndexedHeight := i.jobConsumer.LastProcessedIndex()
159
160
if lastProcessedHeight < highestIndexedHeight {
161
+ if lastProcessedHeight+1000 < highestIndexedHeight {
162
+ i.log.Warn().Msgf("notifying processed heights from %d to %d", lastProcessedHeight+1, highestIndexedHeight)
163
+ }
164
// we need loop here because it's possible for a height to be missed here,
165
// we should guarantee all heights are processed
166
for height := lastProcessedHeight + 1; height <= highestIndexedHeight; height++ {
0 commit comments