Skip to content

Commit

Permalink
remove support for node 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Grandvuinet committed Nov 29, 2017
1 parent 2cd1056 commit 70fd6c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ node_js:
- 8
- 6
- 4
- "0.12"
services:
- mongodb
sudo: false
Expand Down
2 changes: 1 addition & 1 deletion source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ var create = function(patch, options) {
async.parallel([
closeApplicationDb,
closeLogDb
], function(err) { callback(err); });
], err => callback(err));
});
};

Expand Down

0 comments on commit 70fd6c9

Please sign in to comment.