Skip to content

Commit 9173f63

Browse files
authored
Add link to tracking issue.
1 parent c6bde66 commit 9173f63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Security/Authentication/WsFederation/src/WsFederationHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected override async Task HandleChallengeAsync(AuthenticationProperties prop
9898
var wsFederationMessage = new WsFederationMessage()
9999
{
100100
IssuerAddress = _configuration.TokenEndpoint ?? string.Empty,
101-
Wtrealm = Options.Wtrealm!,
101+
Wtrealm = Options.Wtrealm!, // TODO: https://github.com/dotnet/aspnetcore/issues/50242
102102
Wa = WsFederationConstants.WsFederationActions.SignIn,
103103
};
104104

@@ -425,7 +425,7 @@ public virtual async Task SignOutAsync(AuthenticationProperties? properties)
425425
var wsFederationMessage = new WsFederationMessage()
426426
{
427427
IssuerAddress = _configuration.TokenEndpoint ?? string.Empty,
428-
Wtrealm = Options.Wtrealm!,
428+
Wtrealm = Options.Wtrealm!, // TODO: https://github.com/dotnet/aspnetcore/issues/50242
429429
Wa = WsFederationConstants.WsFederationActions.SignOut,
430430
};
431431

0 commit comments

Comments
 (0)