File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 24
24
from asyncio import StreamReader , StreamWriter
25
25
from pathlib import Path
26
26
from test .asynchronous .helpers import ConcurrentRunner
27
+ from test .asynchronous .utils import flaky
27
28
28
29
from pymongo .asynchronous .pool import AsyncConnection
29
30
from pymongo .operations import _Op
@@ -378,6 +379,7 @@ async def test_pool_unpause(self):
378
379
@async_client_context .require_failCommand_appName
379
380
@async_client_context .require_test_commands
380
381
@async_client_context .require_async
382
+ @flaky (reason = "PYTHON-5428" )
381
383
async def test_connection_close_does_not_block_other_operations (self ):
382
384
listener = CMAPHeartbeatListener ()
383
385
client = await self .async_single_client (
Original file line number Diff line number Diff line change 24
24
from asyncio import StreamReader , StreamWriter
25
25
from pathlib import Path
26
26
from test .helpers import ConcurrentRunner
27
+ from test .utils import flaky
27
28
28
29
from pymongo .operations import _Op
29
30
from pymongo .server_selectors import writable_server_selector
@@ -378,6 +379,7 @@ def test_pool_unpause(self):
378
379
@client_context .require_failCommand_appName
379
380
@client_context .require_test_commands
380
381
@client_context .require_async
382
+ @flaky (reason = "PYTHON-5428" )
381
383
def test_connection_close_does_not_block_other_operations (self ):
382
384
listener = CMAPHeartbeatListener ()
383
385
client = self .single_client (
You can’t perform that action at this time.
0 commit comments