File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3481,6 +3481,7 @@ class TestNoSessionsSupport(AsyncEncryptionIntegrationTest):
3481
3481
mongocryptd_client : AsyncMongoClient
3482
3482
MONGOCRYPTD_PORT = 27020
3483
3483
3484
+ @flaky # PYTHON-4982
3484
3485
async def asyncSetUp (self ) -> None :
3485
3486
await super ().asyncSetUp ()
3486
3487
start_mongocryptd (self .MONGOCRYPTD_PORT )
@@ -3493,8 +3494,6 @@ async def asyncSetUp(self) -> None:
3493
3494
hello = await self .mongocryptd_client .db .command ("hello" )
3494
3495
self .assertNotIn ("logicalSessionTimeoutMinutes" , hello )
3495
3496
3496
- # PYTHON-4982
3497
- @flaky
3498
3497
async def test_implicit_session_ignored_when_unsupported (self ):
3499
3498
self .listener .reset ()
3500
3499
with self .assertRaises (OperationFailure ):
Original file line number Diff line number Diff line change @@ -3463,6 +3463,7 @@ class TestNoSessionsSupport(EncryptionIntegrationTest):
3463
3463
mongocryptd_client : MongoClient
3464
3464
MONGOCRYPTD_PORT = 27020
3465
3465
3466
+ @flaky # PYTHON-4982
3466
3467
def setUp (self ) -> None :
3467
3468
super ().setUp ()
3468
3469
start_mongocryptd (self .MONGOCRYPTD_PORT )
@@ -3475,8 +3476,6 @@ def setUp(self) -> None:
3475
3476
hello = self .mongocryptd_client .db .command ("hello" )
3476
3477
self .assertNotIn ("logicalSessionTimeoutMinutes" , hello )
3477
3478
3478
- # PYTHON-4982
3479
- @flaky
3480
3479
def test_implicit_session_ignored_when_unsupported (self ):
3481
3480
self .listener .reset ()
3482
3481
with self .assertRaises (OperationFailure ):
You can’t perform that action at this time.
0 commit comments