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)