We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b368ff commit 53c4e97Copy full SHA for 53c4e97
django_mongodb_backend/base.py
@@ -251,7 +251,9 @@ def get_database_version(self):
251
"""Return a tuple of the database's version."""
252
# This can use PyMongo's
253
# `tuple(self.connection.server_info()["versionArray"])` on
254
- # pymongocrypt>=1.14.2. See: https://jira.mongodb.org/browse/PYTHON-5429
+ # TODO: Replace with `tuple(self.connection.server_info()["versionArray"])` once
255
+ # pymongocrypt >= 1.14.2 is required and PYTHON-5429 is resolved.
256
+ # See: https://jira.mongodb.org/browse/PYTHON-5429
257
return tuple(self.connection.admin.command("buildInfo")["versionArray"])
258
259
## Transaction API for django_mongodb_backend.transaction.atomic()
0 commit comments