All checks were successful
Vulncheck / Vulncheck (push) Successful in 1m12s
Pre-commit hooks / Pre-commit (push) Successful in 1m35s
Build / Build Components (push) Successful in 1m51s
Tests and linters / Run gofumpt (push) Successful in 3m21s
Tests and linters / Staticcheck (push) Successful in 3m27s
Tests and linters / gopls check (push) Successful in 3m52s
Tests and linters / Tests (push) Successful in 4m1s
Tests and linters / Lint (push) Successful in 4m17s
OCI image / Build container images (push) Successful in 5m34s
Tests and linters / Tests with -race (push) Successful in 5m31s
It is not used and not tested properly, so drop it. Change-Id: I7c90c7391ecb4be17459415d209811ba1a693f7a Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
10 lines
313 B
Go
10 lines
313 B
Go
package main
|
|
|
|
import (
|
|
nodeconfig "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-node/config/node"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/attributes"
|
|
)
|
|
|
|
func parseAttributes(c *cfg) {
|
|
fatalOnErr(attributes.ReadNodeAttributes(&c.cfgNodeInfo.localInfo, nodeconfig.Attributes(c.appCfg)))
|
|
}
|