Compare commits

..

No commits in common. "d9bfa5064385289fccf4e8ea0c95b2d626a3fd3c" and "e531a231b552e30e467b6a1e96552b6419575d7f" have entirely different histories.

2 changed files with 6 additions and 6 deletions

View File

@ -126,7 +126,7 @@ class IndexTransaction {
*
* @returns {undefined}
*/
commit(context, cb) {
commit(cb) {
if (this.closed) {
return cb(propError('alreadyCommitted',
'transaction was already committed'));
@ -142,7 +142,7 @@ class IndexTransaction {
// The array-of-operations variant of the `batch` method
// allows passing options such has `sync: true` whereas the
// chained form does not.
return this.db.batch(context, this.operations, writeOptions, cb);
return this.db.batch(this.operations, writeOptions, cb);
}
}

View File

@ -5,7 +5,7 @@
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scality/Arsenal.git"
"url": "git+https://github.com/scality/IronMan-Arsenal.git"
},
"contributors": [
{ "name": "David Pineau", "email": "" },
@ -14,15 +14,15 @@
],
"license": "ISC",
"bugs": {
"url": "https://github.com/scality/Arsenal/issues"
"url": "https://github.com/scality/IronMan-Arsenal/issues"
},
"homepage": "https://github.com/scality/Arsenal#readme",
"homepage": "https://github.com/scality/IronMan-Arsenal#readme",
"dependencies": {
},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.0.0",
"eslint-config-ironman": "scality/Guidelines#rel/1.1",
"eslint-config-ironman": "scality/IronMan-Guidelines#rel/1.0",
"level": "^1.3.0",
"mocha": "^2.3.3",
"temp": "^0.8.3"