We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
After registering a AddResiliencePipeline from the Polly library, it causes an exception be thrown on
https://github.com/microsoft/ApplicationInsights-dotnet/blob/master/NETCORE/src/Shared/Extensions/ApplicationInsightsExtensions.cs
Line:
292
both the ImplementationType && ImplementationInstance are null but ImplementationInstance is not null checked.
This is happening because it is using the KeyedImplementation properties instead.
The text was updated successfully, but these errors were encountered:
This will be solved in 2.23.0 see #2908
temporary fix would be to call the AddApplicationInsights... before a keyed service is added to the ServiceCollection
Sorry, something went wrong.
No branches or pull requests
Describe the bug
After registering a AddResiliencePipeline from the Polly library, it causes an exception be thrown on
https://github.com/microsoft/ApplicationInsights-dotnet/blob/master/NETCORE/src/Shared/Extensions/ApplicationInsightsExtensions.cs
Line:
292
both the ImplementationType && ImplementationInstance are null but ImplementationInstance is not null checked.
This is happening because it is using the KeyedImplementation properties instead.
The text was updated successfully, but these errors were encountered: