Comparing version 0.8.8 to 0.8.9
@@ -0,1 +1,5 @@ | ||
## version 0.8.9 | ||
- Minor bugfixes | ||
## version 0.8.8 | ||
@@ -2,0 +6,0 @@ |
@@ -16,9 +16,5 @@ var Bucket = require('../models/bucket'); | ||
try { | ||
inputs.forEach(function(input) { | ||
result = result.concat(MapReduce.processInput(input)); | ||
}); | ||
} catch (e) { | ||
return e; | ||
} | ||
inputs.forEach(function(input) { | ||
result = result.concat(MapReduce.processInput(input)); | ||
}); | ||
@@ -33,10 +29,6 @@ return result; | ||
try { | ||
var inputs = parseInputs(req.body.inputs); | ||
var query = new MapReduce(req.body.query); | ||
var inputs = parseInputs(req.body.inputs); | ||
var query = new MapReduce(req.body.query); | ||
res.send(query.execute(inputs)); | ||
} catch (e) { | ||
return next(e); | ||
} | ||
res.send(query.execute(inputs)); | ||
@@ -43,0 +35,0 @@ return next(); |
{ | ||
"name": "mock-riak", | ||
"version": "0.8.8", | ||
"version": "0.8.9", | ||
"author": "Marco Tabini <marcot@tabini.ca>", | ||
@@ -5,0 +5,0 @@ "description": "A mock library that simulates a running Riak cluster (without actually having one)", |
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
81677
1667