Skip to content

Commit fc08f5a

Browse files
committed
p12 files no longer contain _key in the name
(cherry picked from commit f3ae7f8)
1 parent ceab1af commit fc08f5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/Unit/TestHeartbeats.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void TestThatHeartbeatWriterWithTLSEnabled()
8484

8585
string hostName = System.Net.Dns.GetHostName();
8686
cf.Ssl.ServerName = hostName;
87-
cf.Ssl.CertPath = $"{sslDir}/client_{hostName}_key.p12";
87+
cf.Ssl.CertPath = $"{sslDir}/client_{hostName}.p12";
8888
cf.Ssl.CertPassphrase = certPassphrase;
8989
cf.Ssl.Enabled = true;
9090

projects/Unit/TestSsl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void TestClientAndServerVerified()
9494
string hostName = System.Net.Dns.GetHostName();
9595
ConnectionFactory cf = new ConnectionFactory { Port = 5671 };
9696
cf.Ssl.ServerName = hostName;
97-
cf.Ssl.CertPath = $"{_sslDir}/client_{hostName}_key.p12";
97+
cf.Ssl.CertPath = $"{_sslDir}/client_{hostName}.p12";
9898
cf.Ssl.CertPassphrase = _certPassphrase;
9999
cf.Ssl.Enabled = true;
100100
SendReceive(cf);

0 commit comments

Comments
 (0)