[#323] storage/engine: Fix message of the error returned by Open method

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-01-18 11:26:49 +03:00 committed by Alex Vanin
parent c5ce777311
commit b5a1c03fb9

View file

@ -12,7 +12,7 @@ func (e *StorageEngine) Open() error {
for id, sh := range e.shards {
if err := sh.Open(); err != nil {
return errors.Wrapf(err, "could not initialize shard %s", id)
return errors.Wrapf(err, "could not open shard %s", id)
}
}