diff --git a/pkg/local_object_storage/engine/engine.go b/pkg/local_object_storage/engine/engine.go index 83e0b2eb9..7b98f8347 100644 --- a/pkg/local_object_storage/engine/engine.go +++ b/pkg/local_object_storage/engine/engine.go @@ -81,14 +81,10 @@ type cfg struct { shardPoolSize uint32 } -const defaultErrorThreshold = 30 - func defaultCfg() *cfg { return &cfg{ log: zap.L(), - errorsThreshold: defaultErrorThreshold, - shardPoolSize: 20, } }