Skip to content

Commit

Permalink
fix(lint): avoid some lint errors about deprecated fields
Browse files Browse the repository at this point in the history
Signed-off-by: James Munson <james.munson@suse.com>
  • Loading branch information
james-munson authored and derekbit committed Aug 26, 2024
1 parent 0ee9446 commit 65d3e21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions controller/instance_manager_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -847,14 +847,14 @@ func formatInstanceMessage(im *longhorn.InstanceManager) string {
}
}

if len(im.Status.Instances) > 0 {
if len(im.Status.Instances) > 0 { // nolint: staticcheck
if ieFormated {
msg = fmt.Sprintf("%v Instances count %v", msg, len(im.Status.Instances))
msg = fmt.Sprintf("%v Instances count %v", msg, len(im.Status.Instances)) // nolint: staticcheck
} else {
msg = fmt.Sprintf("Instances count %v", len(im.Status.Instances))
msg = fmt.Sprintf("Instances count %v", len(im.Status.Instances)) // nolint: staticcheck
}
i := 0
for k := range im.Status.Instances {
for k := range im.Status.Instances { // nolint: staticcheck
msg = msg + " " + k
if i++; i >= ITERATE_NAME_LIMIT {
break
Expand Down

0 comments on commit 65d3e21

Please sign in to comment.