diff --git a/Samples/PubSub/PubSub.suo b/Samples/PubSub/PubSub.suo index ee8703eaa4f..46d5d29c15a 100644 Binary files a/Samples/PubSub/PubSub.suo and b/Samples/PubSub/PubSub.suo differ diff --git a/src/unicast/NServiceBus.Unicast/UnicastBus.cs b/src/unicast/NServiceBus.Unicast/UnicastBus.cs index 58b604b3430..d447cd291b8 100644 --- a/src/unicast/NServiceBus.Unicast/UnicastBus.cs +++ b/src/unicast/NServiceBus.Unicast/UnicastBus.cs @@ -777,7 +777,7 @@ void PerformAutoSubcribe() { Subscribe(messageType); - if(messageType.IsMessageType()) + if(!messageType.IsEventType()) Log.Warn("Future versions of NServiceBus will only autosubscribe messages explicitly marked as IEvent so consider marking messages that are events with the explicit IEvent interface"); } }