Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 7337d91

Browse files
committed
fix(wire-protocol): 2.6 killCursor should not way for reply
NODE-1088
1 parent 31dbaf4 commit 7337d91

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

lib/connection/pool.js

-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ function connectionFailureHandler(self, event) {
287287
// Flush all work Items on this connection
288288
while (this.workItems.length > 0) {
289289
var workItem = this.workItems.shift();
290-
// if(workItem.cb) workItem.cb(err);
291290
if (workItem.cb) workItem.cb(err);
292291
}
293292

lib/wireprotocol/2_6_support.js

-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ WireProtocol.prototype.killCursor = function(bson, ns, cursorState, pool, callba
106106
} catch (err) {
107107
callback(err, null);
108108
}
109-
110-
return;
111109
}
112110

113111
// Callback

test/tests/unit/single/sessions_tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ describe('Sessions (Single)', function() {
217217
}
218218
});
219219

220-
it.only('should return server sessions to the pool on `endSession`', {
220+
it('should return server sessions to the pool on `endSession`', {
221221
metadata: { requires: { topology: 'single' } },
222222
test: function(done) {
223223
let sentIsMaster = false;

0 commit comments

Comments
 (0)