pilorama: Replace "containerID" with "container ID" in the error message
Some checks failed
Tests and linters / Run gofumpt (pull_request) Successful in 3m5s
Pre-commit hooks / Pre-commit (pull_request) Successful in 4m37s
Tests and linters / gopls check (pull_request) Successful in 6m9s
Tests and linters / Tests with -race (pull_request) Successful in 8m5s
DCO action / DCO (pull_request) Failing after 10m24s
Vulncheck / Vulncheck (pull_request) Successful in 11m46s
Build / Build Components (pull_request) Successful in 12m55s
Tests and linters / Staticcheck (pull_request) Successful in 12m51s
Tests and linters / Tests (pull_request) Successful in 13m11s
Tests and linters / Lint (pull_request) Successful in 13m38s

It is "container ID" in every other place.

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2024-12-18 09:40:19 +03:00
parent 58668e6bc3
commit e5cc739886
Signed by: fyrchik
SSH key fingerprint: SHA256:m/TTwCzjnRkXgnzEx9X92ccxy1CcVeinOgDb3NPWWmg

View file

@ -1504,7 +1504,7 @@ func (t *boltForest) TreeListTrees(ctx context.Context, prm TreeListTreesPrm) (*
var contID cidSDK.ID var contID cidSDK.ID
if err := contID.Decode(k[:32]); err != nil { if err := contID.Decode(k[:32]); err != nil {
return fmt.Errorf("decode containerID: %w", err) return fmt.Errorf("decode container ID: %w", err)
} }
res.Items = append(res.Items, ContainerIDTreeID{ res.Items = append(res.Items, ContainerIDTreeID{
CID: contID, CID: contID,