I added new RabbitMQ Server & configured my Publisher connections string to with
"host=PC1:5672,PC2:5672"
var bus = RabbitHutch.CreateBus(connectionString, x => x.Register<IClusterHostSelectionStrategy<ConnectionFactoryInfo>, RandomClusterHostSelectionStrategy<ConnectionFactoryInfo>>());
When i publish I`m using bus.Publish(msg)
When i publish messages , the messsages are sending to PC 1 only. How can i make sure that messages will send to both, randomly.