chore: fix struct field name in comment (#13157)

Signed-off-by: findmyhappy <findhappy@sohu.com>
This commit is contained in:
findmyhappy
2025-06-04 15:20:44 +08:00
committed by GitHub
parent 58c1ed844b
commit 5750f49834

View File

@ -102,14 +102,14 @@ type Config struct {
// from the hotstore should be written to the cold store
UniversalColdBlocks bool
// HotstoreMessageRetention indicates the hotstore retention policy for messages.
// HotStoreMessageRetention indicates the hotstore retention policy for messages.
// It has the following semantics:
// - a value of 0 will only retain messages within the compaction boundary (4 finalities)
// - a positive integer indicates the number of finalities, outside the compaction boundary,
// for which messages will be retained in the hotstore.
HotStoreMessageRetention uint64
// HotstoreFullGCFrequency indicates how frequently (in terms of compactions) to garbage collect
// HotStoreFullGCFrequency indicates how frequently (in terms of compactions) to garbage collect
// the hotstore using full (moving) GC if supported by the hotstore.
// A value of 0 disables full GC entirely.
// A positive value is the number of compactions before a full GC is performed;