shard: Set Disabled
as default mode
for components #1168
4 changed files with 4 additions and 1 deletions
|
@ -54,6 +54,7 @@ func initConfig(c *cfg) {
|
|||
// New creates, initializes and returns new BlobStor instance.
|
||||
func New(opts ...Option) *BlobStor {
|
||||
bs := new(BlobStor)
|
||||
bs.mode = mode.Disabled
|
||||
initConfig(&bs.cfg)
|
||||
|
||||
for i := range opts {
|
||||
|
|
|
@ -107,6 +107,7 @@ func New(opts ...Option) *DB {
|
|||
matchBucket: stringCommonPrefixMatcherBucket,
|
||||
},
|
||||
},
|
||||
mode: mode.Disabled,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -81,6 +81,7 @@ func NewBoltForest(opts ...Option) ForestStorage {
|
|||
openFile: os.OpenFile,
|
||||
metrics: &noopMetrics{},
|
||||
},
|
||||
mode: mode.Disabled,
|
||||
}
|
||||
|
||||
for i := range opts {
|
||||
|
|
|
@ -60,7 +60,7 @@ var defaultBucket = []byte{0}
|
|||
func New(opts ...Option) Cache {
|
||||
c := &cache{
|
||||
flushCh: make(chan objectInfo),
|
||||
mode: mode.ReadWrite,
|
||||
mode: mode.Disabled,
|
||||
|
||||
compressFlags: make(map[string]struct{}),
|
||||
options: options{
|
||||
|
|
Loading…
Reference in a new issue