Skip to content

Commit

Permalink
should not have removed the registration of message driven subscripti…
Browse files Browse the repository at this point in the history
…on manager
  • Loading branch information
yvesgoeleven committed Feb 27, 2014
1 parent 54a1da3 commit 9c8c1e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ripple.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<ripple xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ripple xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>NServiceBus</Name>
<NugetSpecFolder>packaging/nuget</NugetSpecFolder>
<SourceFolder>src</SourceFolder>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace NServiceBus.Features
{
using Unicast.Subscriptions.MessageDrivenSubscriptions;
using Unicast.Subscriptions.MessageDrivenSubscriptions.SubcriberSideFiltering;

public class MessageDrivenSubscriptions : Feature
Expand All @@ -8,7 +9,7 @@ public override void Initialize()
{
Configure.Component<FilteringMutator>(DependencyLifecycle.InstancePerCall);
Configure.Component<SubscriptionPredicatesEvaluator>(DependencyLifecycle.SingleInstance);

Configure.Component<MessageDrivenSubscriptionManager>(DependencyLifecycle.SingleInstance);
}
}
}

0 comments on commit 9c8c1e4

Please sign in to comment.