lightstep-tracer
Advanced tools
Comparing version 0.30.1 to 0.30.2
@@ -7,2 +7,5 @@ # CHANGELOG | ||
## 0.30.2 | ||
* Bugfix for nodejs: remove throw in fetch onError handler (#246) | ||
## 0.30.1 | ||
@@ -9,0 +12,0 @@ * Fix misnamed configuration options. `nodejs_inclusion_patterns` was renamed to `nodejs_url_inclusion_patterns` and `nodejs_exclusion_patterns` was renamed to `nodejs_url_exclusion_patterns`. Because of this bug, the inclusion and exclusion patterns were not being recognized by instrumentation. |
@@ -272,6 +272,2 @@ 'use strict'; | ||
request.on('error', function (e) { | ||
throw e; | ||
}); | ||
request.on('response', function (res) { | ||
@@ -278,0 +274,0 @@ if (res.statusCode >= 500 && res.statusCode <= 599) { |
{ | ||
"name": "lightstep-tracer", | ||
"version": "0.30.1", | ||
"version": "0.30.2", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "types": "index.d.ts", |
@@ -230,6 +230,2 @@ import * as opentracing from 'opentracing'; | ||
request.on('error', (e) => { | ||
throw e; | ||
}); | ||
request.on('response', (res) => { | ||
@@ -236,0 +232,0 @@ if (res.statusCode >= 500 && res.statusCode <= 599) { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5147192
67997