Skip to content

Commit f3ae7f8

Browse files
committed
p12 files no longer contain _key in the name
1 parent a56c01f commit f3ae7f8

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
@@ -79,7 +79,7 @@ public void TestThatHeartbeatWriterWithTLSEnabled()
7979

8080
string hostName = System.Net.Dns.GetHostName();
8181
cf.Ssl.ServerName = hostName;
82-
cf.Ssl.CertPath = $"{sslDir}/client_{hostName}_key.p12";
82+
cf.Ssl.CertPath = $"{sslDir}/client_{hostName}.p12";
8383
cf.Ssl.CertPassphrase = certPassphrase;
8484
cf.Ssl.Enabled = true;
8585

projects/Unit/TestSsl.cs

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

0 commit comments

Comments
 (0)