Skip to content

PYTHON-4704 Migrate test_bulk.py to async #1827

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,10 @@ def require_secondaries_count(self, count):
def sec_count():
return 0 if not self.client else len(self.client.secondaries)

return self._require(lambda: sec_count() >= count, "Not enough secondaries available")
def check():
return sec_count() >= count

return self._require(check, "Not enough secondaries available")

@property
def supports_secondary_read_pref(self):
Expand Down
5 changes: 4 additions & 1 deletion test/asynchronous/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,10 @@ def require_secondaries_count(self, count):
async def sec_count():
return 0 if not self.client else len(await self.client.secondaries)

return self._require(lambda: sec_count() >= count, "Not enough secondaries available")
async def check():
return await sec_count() >= count

return self._require(check, "Not enough secondaries available")

@property
async def supports_secondary_read_pref(self):
Expand Down
Loading
Loading