Compare commits

...

2 Commits

Author SHA1 Message Date
Felix Lange 9681f2fca8
Merge 42088e52af into dab746b3ef 2025-02-19 09:59:48 +07:00
Felix Lange 42088e52af core/state/snapshot: soften log message when snapshot generation is paused 2025-02-17 15:46:25 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ func (dl *diskLayer) checkAndFlush(ctx *generatorContext, current []byte) error
dl.lock.Unlock()
if abort != nil {
ctx.stats.Log("Aborting state snapshot generation", dl.root, current)
ctx.stats.Log("Pausing state snapshot generation", dl.root, current)
return newAbortErr(abort) // bubble up an error for interruption
}
// Don't hold the iterators too long, release them to let compactor works