Skip to content

Commit f488d54

Browse files
davidorbelianbrendandburns
authored andcommitted
Fix incorrect exception message in CertUtils (#172)
1 parent a358cb9 commit f488d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/KubernetesClient/CertUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static X509Certificate2 GeneratePfx(KubernetesClientConfiguration config)
5151

5252
if (keyData == null)
5353
{
54-
throw new KubeConfigException("certData is empty");
54+
throw new KubeConfigException("keyData is empty");
5555
}
5656

5757
if (!string.IsNullOrWhiteSpace(config.ClientCertificateData))

0 commit comments

Comments
 (0)