From 21e4f0d56d5834e19c573475cf6dd2fd9f3d6662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 5 Aug 2025 14:01:37 -0700 Subject: [PATCH] PipelineRunner: argument ordering --- src/pipecat/pipeline/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/pipeline/runner.py b/src/pipecat/pipeline/runner.py index 2f3a8d7de..019007e32 100644 --- a/src/pipecat/pipeline/runner.py +++ b/src/pipecat/pipeline/runner.py @@ -36,18 +36,18 @@ class PipelineRunner(BaseObject): *, name: Optional[str] = None, handle_sigint: bool = True, + handle_sigterm: bool = False, force_gc: bool = False, loop: Optional[asyncio.AbstractEventLoop] = None, - handle_sigterm: bool = False, ): """Initialize the pipeline runner. Args: name: Optional name for the runner instance. handle_sigint: Whether to automatically handle SIGINT signals. + handle_sigterm: Whether to automatically handle SIGTERM signals. force_gc: Whether to force garbage collection after task completion. loop: Event loop to use. If None, uses the current running loop. - handle_sigterm: Whether to automatically handle SIGTERM signals. """ super().__init__(name=name)