Skip to content

Commit 4ef995a

Browse files
committed
Why is this flaking
1 parent 499d7c4 commit 4ef995a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/worker/test_workflow.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6501,7 +6501,7 @@ async def run_timer(self):
65016501
async def run_act(self):
65026502
self.events.append("act-sync")
65036503
await workflow.execute_activity(
6504-
say_hello, "Enchi", schedule_to_close_timeout=timedelta(seconds=5)
6504+
say_hello, "Enchi", schedule_to_close_timeout=timedelta(seconds=30)
65056505
)
65066506
fut: asyncio.Future[bool] = asyncio.Future()
65076507
fut.set_result(True)
@@ -6598,10 +6598,10 @@ async def test_alternate_async_loop_ordering(client: Client):
65986598
await handle.signal(ActivityAndSignalsWhileWorkflowDown.dosig, "1")
65996599
await handle.signal(ActivityAndSignalsWhileWorkflowDown.dosig, "2")
66006600

6601-
async with new_worker(
6602-
client,
6603-
ActivityAndSignalsWhileWorkflowDown,
6604-
activities=[say_hello],
6605-
task_queue=task_queue,
6606-
):
6607-
await handle.result()
6601+
async with new_worker(
6602+
client,
6603+
ActivityAndSignalsWhileWorkflowDown,
6604+
activities=[say_hello],
6605+
task_queue=task_queue,
6606+
):
6607+
await handle.result()

0 commit comments

Comments
 (0)