Matthew Schaefer
Matthew Schaefer
Opened new issue [53842](https://github.com/dotnet/aspnetcore/issues/53842).
@mkArtakMSFT so this should be called in AddOpenIdConnect()? ``` .AddOpenIdConnect(options => { options.Scope.Clear(); ... ``` If so, I can confirm this does not solve the issue. In my case, I...
@mkArtakMSFT the email address claim is there, but the type is no longer "email". Now it's "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress".
If I instead use the type above, then I can get things working: ``` var email = principal.Claims.FirstOrDefault(c => c.Type == "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress")?.Value; ``` But what happened to the claim of...
I ended up solving my issue with the email claim by using ClaimTypes.Email. ``` var email = principal.Claims.FirstOrDefault(c => c.Type == ClaimTypes.Email)?.Value; ```
@tkardaridis not sure if this is exactly the same issue, but I was able to get logging working in 8.11.2. See this [issue](https://github.com/serilog-contrib/serilog-sinks-elasticsearch/issues/576)
UPDATE: I solved this issue by grabbing the Elastic CA secret (name-es-http-ca-internal) out of Kubernetes and adding it to my ca-certificates.crt file in my applications docker file: ``` # add...
We are having the exact same issue with component tests ( I was just coming here to open a new issue ) . We just migrated from webpack to vite....
For us it’s only in docker. ________________________________ From: Lachlan Miller ***@***.***> Sent: Friday, February 24, 2023 4:11:38 AM To: cypress-io/cypress ***@***.***> Cc: Matthew Schaefer ***@***.***>; Comment ***@***.***> Subject: Re: [cypress-io/cypress]...
We are experiencing more or less exactly the same thing. In particular the missing context error from time to time and failing to load component.ts.