Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dgaubert committed May 12, 2020
1 parent 5c16e21 commit b56c072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = class RedisPool extends EventEmitter {

this.pools = {};
this.options = Object.assign({}, DEFAULTS, options);
this.logger = logger
this.logger = logger;

this._addCommands();
this._emitStatus();
Expand Down Expand Up @@ -107,7 +107,7 @@ module.exports = class RedisPool extends EventEmitter {
}, this._getStatusDelay());
}

_getStatusDelay() {
_getStatusDelay () {
return (this.options.emitter && this.options.emitter.statusInterval) || DEFAULT_STATUS_INTERVAL;
}
};
Expand Down

0 comments on commit b56c072

Please sign in to comment.