Skip to content

Commit d32aec1

Browse files
hasezoeynodkz
authored andcommittedSep 10, 2020
fix(MongoMemoryReplSet): remove unused variable
- start: removes variable "current", because it was never assigned
1 parent 0a213dd commit d32aec1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎packages/mongodb-memory-server-core/src/MongoMemoryReplSet.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,8 @@ export default class MongoMemoryReplSet extends EventEmitter {
171171
return this._initServer(this.getInstanceOpts(opts));
172172
});
173173
const cnt = this.opts.replSet.count || 1;
174-
/** For extra logging */
175-
const current = 0;
176174
while (servers.length < cnt) {
177-
log(` starting server ${current} of ${cnt}...`);
175+
log(` starting server ${servers.length + 1} of ${cnt}...`);
178176
const server = this._initServer(this.getInstanceOpts({}));
179177
servers.push(server);
180178
}

0 commit comments

Comments
 (0)
Please sign in to comment.