forked from TrueCloudLab/frostfs-node
[#493] node: Abolish tombstone lifetime configuration
There is no need to change this value for now. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
d36084c26a
commit
9920425db9
2 changed files with 1 additions and 5 deletions
|
@ -139,8 +139,6 @@ const (
|
||||||
cfgGCRemoverSleepInt = "remover_sleep_interval"
|
cfgGCRemoverSleepInt = "remover_sleep_interval"
|
||||||
)
|
)
|
||||||
|
|
||||||
const cfgTombstoneLifetime = "tombstone_lifetime"
|
|
||||||
|
|
||||||
const (
|
const (
|
||||||
addressSize = 72 // 32 bytes oid, 32 bytes cid, 8 bytes protobuf encoding
|
addressSize = 72 // 32 bytes oid, 32 bytes cid, 8 bytes protobuf encoding
|
||||||
)
|
)
|
||||||
|
@ -464,8 +462,6 @@ func defaultConfiguration(v *viper.Viper) {
|
||||||
v.SetDefault(cfgObjectRangeHashPoolSize, 10)
|
v.SetDefault(cfgObjectRangeHashPoolSize, 10)
|
||||||
|
|
||||||
v.SetDefault(cfgCtrlSvcAuthorizedKeys, []string{})
|
v.SetDefault(cfgCtrlSvcAuthorizedKeys, []string{})
|
||||||
|
|
||||||
v.SetDefault(cfgTombstoneLifetime, 5)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *cfg) LocalAddress() *network.Address {
|
func (c *cfg) LocalAddress() *network.Address {
|
||||||
|
|
|
@ -290,7 +290,7 @@ func initObjectService(c *cfg) {
|
||||||
deletesvc.WithPutService(sPut),
|
deletesvc.WithPutService(sPut),
|
||||||
deletesvc.WithNetworkInfo(&delNetInfo{
|
deletesvc.WithNetworkInfo(&delNetInfo{
|
||||||
State: c.cfgNetmap.state,
|
State: c.cfgNetmap.state,
|
||||||
tsLifetime: c.viper.GetUint64(cfgTombstoneLifetime),
|
tsLifetime: 5,
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue