1

我只在我的端点(全部配置)中使用Bus.Reply()(不)。当我启动其中一个时,我收到以下警告:Bus.Publish()AsA_Server

2013-02-27 14:11:02,574 [Worker.15] WARN NServiceBus.Unicast.UnicastBus [(null) ] <(null)> - Subscription message from [not the currently running endpoint's queue]@my machine arrived at this endpoint, yet this endpoint is not configured to be a publi sher.

我是否需要进行配置AsA_Publisher才能在配置的端点之间进行请求/响应AsA_Server?全双工样本似乎没有在这方面提供任何额外的指导。

4

1 回答 1

1

安德烈亚斯·奥伦德

这只是一个警告,关闭自动订阅以避免它。

执行此操作的代码:

Configure.UnicastBus().DoNotAutoSubscribe();

同样根据 Andreas,AutoSubscription 仅适用于IEventmessages

于 2013-02-27T20:02:29.007 回答