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
Please answer these questions before submitting your issue.
Which version of SkyWalking, OS and .NET Runtime? SkyWalking: 0.7.0 OS: win7 .NET Runtime: 4.6.1
Which project? SkyWalking.Sample.AspNet
What happen? When I add async action to ValuesController in SkyWalking.Sample.AspNet, I find that ContextManager.ActiveSpan is always null.
public void ApplicationOnEndRequest(object sender, EventArgs e) { var httpApplication = sender as HttpApplication; var httpContext = httpApplication.Context; if (httpContext.Request.HttpMethod == "OPTIONS") { //asp.net Exclude OPTIONS request return; } var httpRequestSpan = ContextManager.ActiveSpan ; if (httpRequestSpan == null) { return; } }
The text was updated successfully, but these errors were encountered:
This is due to the AsyncLocal cross-threading bug in the .NET Framework.
Sorry, something went wrong.
Repeat with #102, this bug will be fixed in V0.8.
No branches or pull requests
Please answer these questions before submitting your issue.
Bug
Which version of SkyWalking, OS and .NET Runtime?
SkyWalking: 0.7.0
OS: win7
.NET Runtime: 4.6.1
Which project?
SkyWalking.Sample.AspNet
What happen?
When I add async action to ValuesController in SkyWalking.Sample.AspNet, I find that ContextManager.ActiveSpan is always null.
The text was updated successfully, but these errors were encountered: