From aab68b042f3ffd45e795f97466ea54e30ed564bf Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Thu, 19 Sep 2024 20:46:58 +0200 Subject: [PATCH] Switch MassTransit broker to in-memory Changed the MassTransit broker from AzureServiceBus to Memory in the application configuration. This adjustment aims to simplify deployment and reduce dependencies in the current environment. --- src/bundles/Elsa.Server.Web/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundles/Elsa.Server.Web/Program.cs b/src/bundles/Elsa.Server.Web/Program.cs index 09fb8942ce..33328dacef 100644 --- a/src/bundles/Elsa.Server.Web/Program.cs +++ b/src/bundles/Elsa.Server.Web/Program.cs @@ -51,7 +51,7 @@ const bool useSignalR = true; const bool useAzureServiceBus = false; const DistributedCachingTransport distributedCachingTransport = DistributedCachingTransport.MassTransit; -const MassTransitBroker useMassTransitBroker = MassTransitBroker.AzureServiceBus; +const MassTransitBroker useMassTransitBroker = MassTransitBroker.Memory; var builder = WebApplication.CreateBuilder(args); var services = builder.Services;