Skip to content

Commit d1e0ed0

Browse files
committed
Fixes
1 parent a9cf616 commit d1e0ed0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pymongo/asynchronous/topology.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ async def _process_change(
521521
if server:
522522
await server.pool.reset(interrupt_connections=interrupt_connections)
523523

524-
# Wake waiters in select_servers().
524+
# Wake anything waiting in select_servers().
525525
self._condition.notify_all()
526526

527527
async def on_change(

pymongo/synchronous/topology.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def _process_change(
521521
if server:
522522
server.pool.reset(interrupt_connections=interrupt_connections)
523523

524-
# Wake witers in select_servers().
524+
# Wake anything waiting in select_servers().
525525
self._condition.notify_all()
526526

527527
def on_change(

test/asynchronous/test_grid_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ async def test_multi_chunk_file(self):
413413
g = AsyncGridOut(self.db.fs, f._id)
414414
self.assertEqual(random_string, await g.read())
415415

416-
# # TODO: convert qcheck to async
416+
# # TODO: https://jira.mongodb.org/browse/PYTHON-4708
417417
# async def test_small_chunks(self):
418418
# self.files = 0
419419
# self.chunks = 0

test/test_grid_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ def test_multi_chunk_file(self):
411411
g = GridOut(self.db.fs, f._id)
412412
self.assertEqual(random_string, g.read())
413413

414-
# # TODO: convert qcheck to async
414+
# # TODO: https://jira.mongodb.org/browse/PYTHON-4708
415415
# def test_small_chunks(self):
416416
# self.files = 0
417417
# self.chunks = 0

0 commit comments

Comments
 (0)