File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -168,12 +168,8 @@ async def __aiter__(
168168 run_cm = None
169169
170170 if run_cm is not None :
171- try :
172- async with run_cm as run :
173- async for step_result in self ._execute (run ):
174- yield step_result
175- except NotImplementedError :
176- async for step_result in self ._execute (None ):
171+ async with run_cm as run :
172+ async for step_result in self ._execute (run ):
177173 yield step_result
178174 else :
179175 async for step_result in self ._execute (None ):
Original file line number Diff line number Diff line change 1111from cqrs .saga .storage .enums import SagaStatus
1212from cqrs .saga .storage .sqlalchemy import SqlAlchemySagaStorage
1313
14+ from tests .integration .conftest import _TestContainer
1415from tests .integration .test_saga_mediator_memory import (
15- _TestContainer ,
1616 FailingOrderSaga ,
1717 InventoryReservedEventHandler ,
1818 OrderContext ,
You can’t perform that action at this time.
0 commit comments