mirror of https://github.com/k3s-io/k3s.git
fix: typo in etcd membership error message
Found a typo while working, quick fix. It should display "This server is not a member of the etcd cluster" instead of "this server is a not a member of the etcd cluster" Kind regards, Signed-off-by: DT1mote <74531281+DT1mote@users.noreply.github.com>pull/13856/head
parent
f40cf096c9
commit
cc1c20fdc0
|
|
@ -136,7 +136,7 @@ type membershipError struct {
|
|||
}
|
||||
|
||||
func (e *membershipError) Error() string {
|
||||
return fmt.Sprintf("this server is a not a member of the etcd cluster. Found %v, expect: %s", e.members, e.self)
|
||||
return fmt.Sprintf("this server is not a member of the etcd cluster. Found %v, expect: %s", e.members, e.self)
|
||||
}
|
||||
|
||||
func (e *membershipError) Is(target error) bool {
|
||||
|
|
|
|||
Loading…
Reference in New Issue