[#1689] Remove deprecated NodeInfo.IterateAttributes()

Change-Id: Ibd07302079efe148903aa6177759232a28616736
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2025-04-04 20:24:46 +03:00
parent bf06c4fb4b
commit e65d578ba9
4 changed files with 8 additions and 8 deletions

View file

@ -66,7 +66,7 @@ func prettyPrintNodeInfo(cmd *cobra.Command, i netmap.NodeInfo) {
cmd.Println("address:", s)
}
i.IterateAttributes(func(key, value string) {
for key, value := range i.Attributes() {
cmd.Printf("attribute: %s=%s\n", key, value)
})
}
}