We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e82b5b4 commit f774135Copy full SHA for f774135
projects/client/RabbitMQ.Client/src/client/api/ConnectionFactory.cs
@@ -214,7 +214,8 @@ public virtual IConnection CreateConnection()
214
IConnection conn = null;
215
try
216
{
217
- IFrameHandler fh = Endpoint.Protocol.CreateFrameHandler(Endpoint,
+ IProtocol p = Endpoint.Protocol;
218
+ IFrameHandler fh = p.CreateFrameHandler(Endpoint,
219
SocketFactory,
220
RequestedConnectionTimeout);
221
conn = p.CreateConnection(this, false, fh);
0 commit comments