-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
PYTHON-4725, PYTHON-4860, PYTHON-4871, PYTHON-4843 #1948
Conversation
Co-authored-by: Iris <58442094+sleepyStick@users.noreply.github.com> Co-authored-by: Steven Silvester <steven.silvester@ieee.org> Co-authored-by: Shane Harvey <shnhrv@gmail.com>
… loop (#1928) Co-authored-by: Iris <58442094+sleepyStick@users.noreply.github.com> Co-authored-by: Steven Silvester <steven.silvester@ieee.org> Co-authored-by: Shane Harvey <shnhrv@gmail.com>
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Iris <58442094+sleepyStick@users.noreply.github.com> Co-authored-by: Steven Silvester <steven.silvester@ieee.org> Co-authored-by: Shane Harvey <shnhrv@gmail.com> Co-authored-by: Jeffrey A. Clark <aclark@aclark.net> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jib <jib.adegunloye@mongodb.com>
Looks like we're stilling seeing the same issue we saw here:
|
…agate CancelledErrors (#1996)
We're still seeing the same issue, investigating further. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of the encryption tests are failing on 4.0:
[2024/11/20 13:36:49.569] FAILURE: pymongo.errors.ConfigurationError: Auto-encryption requires a minimum MongoDB version of 4.2 ()
[2024/11/20 13:36:49.569] self = <test.test_encryption.TestDecryptProse testMethod=test_04_decrypt_success>
[2024/11/20 13:36:49.569] def test_04_decrypt_success(self):
[2024/11/20 13:36:49.569] > self.encrypted_client.db.decryption_events.insert_one({"encrypted": self.cipher_text})
[2024/11/20 13:36:49.569] test/test_encryption.py:1878:
That sounds like an issue with the new _setup_class code.
self.assertEqual(self.listener.started_command_names(), ["insert", "insert"]) | ||
self.assertEqual( | ||
len([c for c in self.listener.started_command_names() if c == "insert"]), 2 | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What other commands are interleaved here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
find
and listCollections
, both of which are part of a call made by the state machine:
async def collection_info(self, database: str, filter: bytes) -> Optional[bytes]: |
No description provided.