26b4a258e0
1. Move compression parameters to the `shard` section. 2. Allow to use multiple sub-storage components in the blobstor. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
13 lines
353 B
Go
13 lines
353 B
Go
package blobstor
|
|
|
|
import "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree"
|
|
|
|
// DumpInfo returns information about blob stor.
|
|
func (b *BlobStor) DumpInfo() fstree.Info {
|
|
for i := range b.storage {
|
|
if b.storage[i].Storage.Type() == "fstree" {
|
|
return b.storage[i].Storage.(*fstree.FSTree).Info
|
|
}
|
|
}
|
|
return fstree.Info{}
|
|
}
|