redis-sessions
Advanced tools
Comparing version 1.0.5 to 1.0.6
# CHANGELOG | ||
## 1.0.6 | ||
* Removed callback for `quit` method. | ||
## 1.0.5 | ||
@@ -4,0 +8,0 @@ |
@@ -343,5 +343,4 @@ // Generated by CoffeeScript 1.10.0 | ||
RedisSessions.prototype.quit = function(cb) { | ||
RedisSessions.prototype.quit = function() { | ||
this.redis.quit(); | ||
cb(null, true); | ||
}; | ||
@@ -348,0 +347,0 @@ |
{ | ||
"name": "redis-sessions", | ||
"description": "An advanced session store for Redis", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "author": "P. Liess <smrchy+npm@gmail.com>", |
@@ -785,8 +785,6 @@ // Generated by CoffeeScript 1.10.0 | ||
it('Issue the Quit Command.', function(done) { | ||
rs.quit(function(err, resp) { | ||
resp.should.equal(true); | ||
done(); | ||
}); | ||
rs.quit(); | ||
done(); | ||
}); | ||
}); | ||
}); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
92807
1409