Skip to content

Commit

Permalink
fix: strategy wrapper no longer throws on a null context, instead pas…
Browse files Browse the repository at this point in the history
…sing it to the actual strategy (#863)
  • Loading branch information
AndrewTriesToCode authored Aug 3, 2024
1 parent e765340 commit 2b165c7
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ public MultiTenantStrategyWrapper(IMultiTenantStrategy strategy, ILogger logger)

public async Task<string?> GetIdentifierAsync(object context)
{
if (context == null)
{
throw new ArgumentNullException(nameof(context));
}

string? identifier = null;

try
Expand Down

0 comments on commit 2b165c7

Please sign in to comment.