From b3c73e99eab12587336e6d40b8bd87168d6749b8 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Thu, 31 Oct 2024 19:59:42 +0100 Subject: [PATCH] Disable SignalR in Elsa Server 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. --- 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 33328dacef..209451473b 100644 --- a/src/bundles/Elsa.Server.Web/Program.cs +++ b/src/bundles/Elsa.Server.Web/Program.cs @@ -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;