From c9b22c1dd3efb739c810c9720844d634043da91d Mon Sep 17 00:00:00 2001 From: Noah Canadea Date: Wed, 15 May 2024 10:40:43 +0200 Subject: [PATCH] fix(persistence): add missing tenant name assignment --- .../Persistence/Models/PersistenceModelExtensions.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Thinktecture.Relay.Server.Abstractions/Persistence/Models/PersistenceModelExtensions.cs b/src/Thinktecture.Relay.Server.Abstractions/Persistence/Models/PersistenceModelExtensions.cs index 043a2ed2c..8f9233144 100644 --- a/src/Thinktecture.Relay.Server.Abstractions/Persistence/Models/PersistenceModelExtensions.cs +++ b/src/Thinktecture.Relay.Server.Abstractions/Persistence/Models/PersistenceModelExtensions.cs @@ -32,6 +32,7 @@ public static void UpdateFrom(this ClientSecret instance, ClientSecret other) /// The source to copy the data over from to this instance. public static void UpdateFrom(this Config instance, Config other) { + instance.TenantName = other.TenantName; instance.KeepAliveInterval = other.KeepAliveInterval; instance.EnableTracing = other.EnableTracing; instance.ReconnectMinimumDelay = other.ReconnectMinimumDelay;