Skip to content

Commit

Permalink
Switch MassTransit broker to in-memory
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sfmskywalker committed Sep 19, 2024
1 parent ea30143 commit aab68b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundles/Elsa.Server.Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit aab68b0

Please sign in to comment.