Skip to content

Commit

Permalink
fix: warning for empty chassis fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lut777 committed Aug 8, 2022
1 parent d7fd379 commit 3e753a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ func (c *Controller) RemoveRedundantChassis(node *v1.Node) error {
}
}
}
return errors.New("chassis reset, reboot ovs-ovn on this node: " + node.Name)
return errors.New("chassis is empty, please check parameters and reboot ovs-ovn on this node: " + node.Name)
}
return nil
}
Expand Down

0 comments on commit 3e753a5

Please sign in to comment.