From 408a7711adebc4f260d35dfea7776bbd57f24480 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Wed, 13 Nov 2024 14:50:45 +0800 Subject: [PATCH 1/2] Update default Rebus configuration --- .../Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs b/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs index d128621396..e1cbcdea7f 100644 --- a/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs +++ b/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs @@ -29,7 +29,7 @@ public class AbpRebusEventBusOptions private void DefaultConfigure(RebusConfigurer configure) { - configure.Subscriptions(s => s.StoreInMemory()); + //configure.Subscriptions(s => s.StoreInMemory()); configure.Transport(t => t.UseInMemoryTransport(new InMemNetwork(), InputQueueName)); } } From 9974e42610f2570dfee8a78c677a1d50321d70ad Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Wed, 13 Nov 2024 14:51:48 +0800 Subject: [PATCH 2/2] Update AbpRebusEventBusOptions.cs --- .../Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs b/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs index e1cbcdea7f..4b93082722 100644 --- a/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs +++ b/framework/src/Volo.Abp.EventBus.Rebus/Volo/Abp/EventBus/Rebus/AbpRebusEventBusOptions.cs @@ -29,7 +29,6 @@ public class AbpRebusEventBusOptions private void DefaultConfigure(RebusConfigurer configure) { - //configure.Subscriptions(s => s.StoreInMemory()); configure.Transport(t => t.UseInMemoryTransport(new InMemNetwork(), InputQueueName)); } }