20 lines
528 B
Go
20 lines
528 B
Go
|
package objectconfig
|
||
|
|
||
|
import "github.com/TrueCloudLab/frostfs-node/cmd/frostfs-node/config"
|
||
|
|
||
|
const (
|
||
|
deleteSubsection = "delete"
|
||
|
|
||
|
// DefaultTombstoneLifetime is the default value of tombstone lifetime in epochs.
|
||
|
DefaultTombstoneLifetime = 5
|
||
|
)
|
||
|
|
||
|
// TombstoneLifetime returns the value of `tombstone_lifetime` config parameter.
|
||
|
func TombstoneLifetime(c *config.Config) uint64 {
|
||
|
ts := config.UintSafe(c.Sub(subsection).Sub(deleteSubsection), "tombstone_lifetime")
|
||
|
if ts <= 0 {
|
||
|
return DefaultTombstoneLifetime
|
||
|
}
|
||
|
return ts
|
||
|
}
|