-
Notifications
You must be signed in to change notification settings - Fork 790
New issue
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
Enable .net5.0 #1486
Enable .net5.0 #1486
Conversation
@alanwest @cijothomas , we might have some issues here.... don't know yet what else is happening... |
And the second thing that I saw failing is this: |
I tracked this down to the fact that HttpClient instrumentation does not get invoked when using Grpc.Net.Client on .NET 5. See #1490 for more details. Few options for moving forward with this PR in the meantime:
using var channel = GrpcChannel.ForAddress(uri, new GrpcChannelOptions()
{
HttpClient = new HttpClient(),
}); |
Ugh, I noted this issue as well on your branch when running all the gRPC tests concurrently. Seems concurrency issues keep cropping up with this test suite. I have not yet tracked down the cause, but I will keep poking at it... |
Should we add this workaround for now? What do you think? |
I'm ok with this workaround for now. Maybe inside of a |
just added a if for netcoreapp3.1, since net5_0 wasn't working for me. |
Codecov Report
@@ Coverage Diff @@
## master #1486 +/- ##
==========================================
+ Coverage 81.13% 81.15% +0.01%
==========================================
Files 232 232
Lines 6309 6309
==========================================
+ Hits 5119 5120 +1
+ Misses 1190 1189 -1
|
Fixes #.
Changes
Please provide a brief description of the changes here.
For significant contributions please make sure you have completed the following items:
CHANGELOG.md
updated for non-trivial changes