From b21e306a86f279cf33ab6c4264624b0296c52c0d Mon Sep 17 00:00:00 2001 From: Poulpe Date: Mon, 27 Apr 2026 22:13:02 +0000 Subject: [PATCH] =?UTF-8?q?fix(pipeline):=20scan=5Fsorties=20sync=20(was?= =?UTF-8?q?=20async,=20broke=20to=5Fthread=20=E2=86=92=20coroutine=20inste?= =?UTF-8?q?ad=20of=20list=20=E2=86=92=20500)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline_runner/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline_runner/runner.py b/pipeline_runner/runner.py index e9686f3..c53befa 100644 --- a/pipeline_runner/runner.py +++ b/pipeline_runner/runner.py @@ -121,7 +121,7 @@ async def run_pipeline(sortie_id: str, queue: asyncio.Queue) -> None: await _emit(queue, "write", 100, "Pipeline terminé") -async def scan_sorties() -> list[dict]: +def scan_sorties() -> list[dict]: """List available sorties on GDrive via rclone lsd (lent ~30s).""" result = subprocess.run( ["rclone", "lsd", GDRIVE_REMOTE],