-
Notifications
You must be signed in to change notification settings - Fork 96
fixes http.get patches for header propagation #117 #324
fixes http.get patches for header propagation #117 #324
Conversation
Codecov Report
@@ Coverage Diff @@
## master #324 +/- ##
==========================================
+ Coverage 94.93% 94.99% +0.06%
==========================================
Files 119 119
Lines 8172 8195 +23
Branches 732 734 +2
==========================================
+ Hits 7758 7785 +27
+ Misses 414 410 -4
Continue to review full report at Codecov.
|
Not related but i believe the problem is the same with |
@draffensperger @mayurkale22 Sorry for the ping but do the PR need something specific to be reviewed and merged ? |
Hi @vmarchaud, thanks for the contribution and sorry for the slow response! I suspect this is just a procedural issue where both @mayurkale22 missed this PR since it had others tagged on it. Mayur, is it possible to change the default reviewers for new PRs? This looks good to me, though Mayur will need to do the final review and merge. |
Hey @vmarchaud, sorry for the late response. PR looks good for me. @draffensperger I think it is possible using |
I got the same issue as #117 while integrating the tracing system into my APM.
I did go over https://github.com/googleapis/cloud-trace-nodejs/ to checkout their implementation and found a details that could explain the problem: https://github.com/googleapis/cloud-trace-nodejs/blob/master/src/plugins/plugin-http.ts#L198
The test are passing for one good reason: they are all
nocked
, so the actual http code never run. I added a test that make a GET request togoogle.fr
, it might be better to spawn a local server to avoid instability due to network.