Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow-core/tests/unit/executors/test_local_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def test_terminate_kills_worker_that_ignores_sigterm(self):
proc.kill.assert_called_once_with()
assert proc.join.call_args_list == [mock.call(timeout=0.2), mock.call(timeout=0.2)]

@pytest.mark.execution_timeout(10)
@pytest.mark.execution_timeout(30)
def test_end_drains_result_queue_to_avoid_join_deadlock(self):
executor = LocalExecutor(parallelism=1)
executor.activity_queue = multiprocessing.SimpleQueue()
Expand Down