Skip to content

Commit

Permalink
Disable SignalR in Elsa Server
Browse files Browse the repository at this point in the history
Updated `useSignalR` flag to false in `Program.cs` due to Elsa Studio's current inability to send authenticated requests to the SignalR hub. This change ensures better security and stability until the necessary update is implemented.
  • Loading branch information
sfmskywalker committed Oct 31, 2024
1 parent 91b7e0c commit b3c73e9
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 @@ -48,7 +48,7 @@
const bool useMemoryStores = false;
const bool useCaching = true;
const bool useReadOnlyMode = false;
const bool useSignalR = true;
const bool useSignalR = false; // Disable until Elsa Studio is updated to send authenticated requests to the SignalR hub.
const bool useAzureServiceBus = false;
const DistributedCachingTransport distributedCachingTransport = DistributedCachingTransport.MassTransit;
const MassTransitBroker useMassTransitBroker = MassTransitBroker.Memory;
Expand Down

0 comments on commit b3c73e9

Please sign in to comment.