Commit 384da534 authored by Eric Paris's avatar Eric Paris

test/e2e/framework: fix external/internal typo err in GetNodeInternalIP

parent 8d804ceb
...@@ -4916,7 +4916,7 @@ func GetNodeInternalIP(node *v1.Node) (string, error) { ...@@ -4916,7 +4916,7 @@ func GetNodeInternalIP(node *v1.Node) (string, error) {
} }
} }
if host == "" { if host == "" {
return "", fmt.Errorf("Couldn't get the external IP of host %s with addresses %v", node.Name, node.Status.Addresses) return "", fmt.Errorf("Couldn't get the internal IP of host %s with addresses %v", node.Name, node.Status.Addresses)
} }
return host, nil return host, nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment