Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
19 lines
534 B
Go
19 lines
534 B
Go
package objectconfig
|
|
|
|
import "git.frostfs.info/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
|
|
}
|