Skip to content

Commit

Permalink
Use cls-hooked instead of continuation-local-storage,
Browse files Browse the repository at this point in the history
as suggested by @raymondfeng
in strongloop/loopback-context PR strongloop#1 comment #235931961
  • Loading branch information
josieusa committed Sep 9, 2016
1 parent 2982f60 commit f39a68b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# loopback-context

Current context for LoopBack applications, based on
node-continuation-local-storage.
cls-hooked.

## WARNING

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "loopback-context",
"version": "1.0.0",
"description": "Current context for LoopBack applications, based on node-continuation-local-storage",
"description": "Current context for LoopBack applications, based on cls-hooked",
"keywords": [
"StrongLoop",
"LoopBack",
Expand All @@ -20,7 +20,7 @@
},
"license": "MIT",
"dependencies": {
"continuation-local-storage": "^3.1.7"
"cls-hooked": "^4.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
Expand Down
2 changes: 1 addition & 1 deletion server/current-context.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

'use strict';

var cls = require('continuation-local-storage');
var cls = require('cls-hooked');
var domain = require('domain');

var LoopBackContext = module.exports;
Expand Down

0 comments on commit f39a68b

Please sign in to comment.