Skip to content

Commit

Permalink
fix(persistence): add missing tenant name assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Noahnc authored and thomashilzendegen committed May 15, 2024
1 parent 0a74b31 commit c9b22c1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public static void UpdateFrom(this ClientSecret instance, ClientSecret other)
/// <param name="other">The source to copy the data over from to this instance.</param>
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;
Expand Down

0 comments on commit c9b22c1

Please sign in to comment.