writecache: Fix panic on Get when it is not initialized #987

Merged
fyrchik merged 1 commit from acid-ant/frostfs-node:bugfix/959-rebuild-blobstor into master 2024-09-04 19:51:06 +00:00

View file

@ -84,6 +84,9 @@ func (c *cache) Head(ctx context.Context, addr oid.Address) (*objectSDK.Object,
//
// Returns an error of type apistatus.ObjectNotFound if the requested object is missing in db.
func Get(db *bbolt.DB, key []byte) ([]byte, error) {
if db == nil {
return nil, ErrNotInitialized
}
var value []byte
err := db.View(func(tx *bbolt.Tx) error {
b := tx.Bucket(defaultBucket)