File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
RabbitMQ.Client/client/api Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "erlang" : " 25.1.1 " ,
3
- "rabbitmq" : " 3.11.1 "
2
+ "erlang" : " 25.2 " ,
3
+ "rabbitmq" : " 3.11.5 "
4
4
}
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ namespace RabbitMQ.Client
48
48
/// "Port" properties are extracted.
49
49
/// </para>
50
50
/// </remarks>
51
- public class AmqpTcpEndpoint // : ICloneable
51
+ public class AmqpTcpEndpoint
52
52
{
53
53
/// <summary>
54
54
/// Default Amqp ssl port.
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public void TestThatHeartbeatWriterWithTLSEnabled()
79
79
80
80
string hostName = System . Net . Dns . GetHostName ( ) ;
81
81
cf . Ssl . ServerName = hostName ;
82
- cf . Ssl . CertPath = $ "{ sslDir } /client_{ hostName } _key .p12";
82
+ cf . Ssl . CertPath = $ "{ sslDir } /client_{ hostName } .p12";
83
83
cf . Ssl . CertPassphrase = certPassphrase ;
84
84
cf . Ssl . Enabled = true ;
85
85
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ public void TestClientAndServerVerified()
95
95
string hostName = System . Net . Dns . GetHostName ( ) ;
96
96
ConnectionFactory cf = new ConnectionFactory { Port = 5671 } ;
97
97
cf . Ssl . ServerName = hostName ;
98
- cf . Ssl . CertPath = $ "{ _sslDir } /client_{ hostName } _key .p12";
98
+ cf . Ssl . CertPath = $ "{ _sslDir } /client_{ hostName } .p12";
99
99
cf . Ssl . CertPassphrase = _certPassphrase ;
100
100
cf . Ssl . Enabled = true ;
101
101
SendReceive ( cf ) ;
You can’t perform that action at this time.
0 commit comments