After updating MassTransit packages to the latest versions (4.1.0.1426-develop) I can't get connected to RabbitMQ (3.6.15). Rabbit is up and running. I can connect to it using the UI.
Previous version that I used was "4.0.0.1334-develop" and in order to connect to RabbitMQ I used
IRabbitMqHost host = x.Host(new Uri("rabbitmq://guest:guest@localhost:5672/test"), h => { });
I have tried tried other options to connect to RabbitMQ. This one for example
IRabbitMqHost host = x.Host("localhost", 5672, "test", h => {
h.Username("guest");
h.Password("guest");
});
but still get this error message: "Broker unreachable: guest@localhost:5672/test"
Any ideas what could be wrong?