Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
io.js is out now and although it is version 1.0.1, trying to require 'newrelic' with it was crashing: message = "New Relic for Node.js requires a version of Node equal to or\n" + "greater than 0.6.0. Not starting!" There was a bug in a version checking that was only checking that the minor version was less than 6, but was ignoring the major version, so it failed to notice that that 1.0.1 > = 0.6.0. Before and after checking was done by loading the iojs REPL and trying this: var nr = require('./index.js'); This crashes before the change and works after it. Ref: https://iojs.org/
- Loading branch information