Fix incorrect exception message in CertUtils (#172)

This commit is contained in:
David Orbelian
2018-06-12 00:09:51 +04:00
committed by Brendan Burns
parent a358cb9afd
commit f488d54ce7

View File

@@ -51,7 +51,7 @@ namespace k8s
if (keyData == null)
{
throw new KubeConfigException("certData is empty");
throw new KubeConfigException("keyData is empty");
}
if (!string.IsNullOrWhiteSpace(config.ClientCertificateData))