我添加了新的 RabbitMQ 服务器并将我的发布者连接字符串配置为
"host=PC1:5672,PC2:5672"
var bus = RabbitHutch.CreateBus(connectionString, x => x.Register<IClusterHostSelectionStrategy<ConnectionFactoryInfo>, RandomClusterHostSelectionStrategy<ConnectionFactoryInfo>>());
当我发布时,我正在使用bus.Publish(msg)
当我发布消息时,消息仅发送到 PC 1。我如何确保消息将随机发送给两者。