@instana/collector
Advanced tools
Comparing version 1.86.0 to 1.87.0
{ | ||
"name": "@instana/collector", | ||
"version": "1.86.0", | ||
"version": "1.87.0", | ||
"description": "The Instana Node.js metrics and trace data collector", | ||
@@ -119,3 +119,3 @@ "author": { | ||
"dependencies": { | ||
"@instana/core": "^1.86.0", | ||
"@instana/core": "^1.87.0", | ||
"bunyan": "^1.8.12", | ||
@@ -140,3 +140,3 @@ "event-loop-lag": "^1.4.0", | ||
}, | ||
"gitHead": "09fa6a339c6a213f102fc96fe78e6432a62078d3" | ||
"gitHead": "3054ba9cd79922ea5d334647797175922656a946" | ||
} |
@@ -62,3 +62,7 @@ 'use strict'; | ||
fs.readFile(packageJsonPath, { encoding: 'utf8' }, function(err, contents) { | ||
if (err) { | ||
if (err && err.code === 'ENOENT') { | ||
// This directory does not contain a package json. This happens for example for node_modules/.cache etc. | ||
// We can simply ignore this. | ||
return logger.debug('No package.json at ' + packageJsonPath + ', ignoring this directory.'); | ||
} else if (err) { | ||
return logger.info( | ||
@@ -65,0 +69,0 @@ 'Failed to identify version of %s dependency due to: %s. This means that you will not be ' + |
92395
45
2017
Updated@instana/core@^1.87.0