Notes
Fixed an inverted
ifin config loading.Previously, the config loader would log a warning on success, rather than failure. Configuration loading works as expected now.
Fixed a bug in
process.nextTickinstrumentation for io.js 1.8.1.Previously the agent would only pass the callback argument to
process.nextTick. This did not cause issues in Node.js and older version of io.js, since additional arguments were ignored. In a recent change to io.js,process.nextTickwas changed to pass any additional arguments to the callback, the same waysetImmediatedoes. This change ensures all arguments are handled as expected.