From 2e199c7ab1b8bd925875d75b7c04ddf2a46b1dca Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Wed, 19 Oct 2022 12:25:43 +0300 Subject: [PATCH] [#1902] shard: Fix pilorama disabled err message Signed-off-by: Pavel Karpy --- pkg/local_object_storage/shard/tree.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/local_object_storage/shard/tree.go b/pkg/local_object_storage/shard/tree.go index 617cab0f9..b57a1a314 100644 --- a/pkg/local_object_storage/shard/tree.go +++ b/pkg/local_object_storage/shard/tree.go @@ -10,7 +10,7 @@ import ( var _ pilorama.Forest = (*Shard)(nil) // ErrPiloramaDisabled is returned when pilorama was disabled in the configuration. -var ErrPiloramaDisabled = errors.New("plorama is disabled") +var ErrPiloramaDisabled = errors.New("pilorama is disabled") // TreeMove implements the pilorama.Forest interface. func (s *Shard) TreeMove(d pilorama.CIDDescriptor, treeID string, m *pilorama.Move) (*pilorama.LogMove, error) {