Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix new connection bug with SSL #1612

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Amqp/Akka.Streams.Amqp.RabbitMq/AmqpConnector.cs
Expand Up @@ -69,7 +69,7 @@ public static IConnection NewConnection(IConnectionFactory factory, IAmqpConnect
throw new ArgumentException("You need to supply at least one host/port pair.", nameof(settings));

return factory.CreateConnection(details.HostAndPortList
.Select(pair => new AmqpTcpEndpoint(pair.host, pair.port)).ToList());
.Select(pair => new AmqpTcpEndpoint(pair.host, pair.port, details.Ssl)).ToList());
}
default:
return factory.CreateConnection();
Expand Down