[#211] blobstor: Remove global lock

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-11-25 14:30:48 +03:00 committed by Alex Vanin
parent 59f7cf9873
commit 53b114cf8b
5 changed files with 0 additions and 16 deletions

View file

@ -3,7 +3,6 @@ package blobstor
import (
"encoding/hex"
"os"
"sync"
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
"go.uber.org/zap"
@ -12,8 +11,6 @@ import (
// BlobStor represents NeoFS local BLOB storage.
type BlobStor struct {
*cfg
mtx *sync.RWMutex
}
// Option represents BlobStor's constructor option.
@ -57,7 +54,6 @@ func New(opts ...Option) *BlobStor {
return &BlobStor{
cfg: c,
mtx: new(sync.RWMutex),
}
}