Merge pull request #73359 from eparis/fix-typo

test/e2e/framework: fix external/internal typo err in GetNodeInternalIP
pull/564/head
Kubernetes Prow Robot 2019-01-27 11:03:18 -08:00 committed by GitHub
commit 8b98e802ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4916,7 +4916,7 @@ func GetNodeInternalIP(node *v1.Node) (string, error) {
}
}
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
}