Add eslint (#741)
This commit is contained in:
parent
953428cad5
commit
62417f7fb8
72 changed files with 305 additions and 323 deletions
|
|
@ -24,7 +24,7 @@ function loadAndExecuteScript(redisClient, filename, args) {
|
|||
|
||||
function runEvalSha(redisClient, filename, args) {
|
||||
const evalInput = args.slice();
|
||||
evalInput.unshift(EVALSHA_CACHE[filename])
|
||||
evalInput.unshift(EVALSHA_CACHE[filename]);
|
||||
return redisClient.evalshaAsync.apply(redisClient, evalInput);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -42,8 +42,8 @@ class RedisClientProvider {
|
|||
* @param {Error} err error from the client
|
||||
* @private
|
||||
*/
|
||||
_defaultErrorHandler(err) {
|
||||
_defaultErrorHandler(_err) {
|
||||
}
|
||||
}
|
||||
|
||||
export default RedisClientProvider
|
||||
export default RedisClientProvider;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue