From 481570909a50989bc4f151e5a01ae620281e1ec9 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Wed, 23 Oct 2024 14:08:39 +0200 Subject: [PATCH] Disable multitenancy and agents Multitenancy and agents have been disabled by setting `useMultitenancy` and `useAgents` to `false`. This change simplifies the current configuration by reducing the active features. --- src/apps/Elsa.Server.Web/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/Elsa.Server.Web/Program.cs b/src/apps/Elsa.Server.Web/Program.cs index eed46f0c1..28ff7ae02 100644 --- a/src/apps/Elsa.Server.Web/Program.cs +++ b/src/apps/Elsa.Server.Web/Program.cs @@ -65,8 +65,8 @@ const bool useSignalR = true; const WorkflowRuntime workflowRuntime = WorkflowRuntime.ProtoActor; const DistributedCachingTransport distributedCachingTransport = DistributedCachingTransport.ProtoActor; const MassTransitBroker massTransitBroker = MassTransitBroker.Memory; -const bool useMultitenancy = true; -const bool useAgents = true; +const bool useMultitenancy = false; +const bool useAgents = false; const bool useSecrets = true; const bool useAzureServiceBus = false;