From 800ea00d1298f4d1362d87c2a0033fa69d490672 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 26 Feb 2026 10:43:04 +0100 Subject: [PATCH] Force bufsize=0 on subprocess Which should already be the default, but just in case --- music_assistant/helpers/process.py | 1 + 1 file changed, 1 insertion(+) diff --git a/music_assistant/helpers/process.py b/music_assistant/helpers/process.py index 75cc310c..c33c11ad 100644 --- a/music_assistant/helpers/process.py +++ b/music_assistant/helpers/process.py @@ -122,6 +122,7 @@ class AsyncProcess: stdout=asyncio.subprocess.PIPE if self._stdout is True else self._stdout, stderr=asyncio.subprocess.PIPE if self._stderr is True else self._stderr, env=self._env, + bufsize=0, ) self.logger.log( VERBOSE_LOG_LEVEL, "Process %s started with PID %s", self.name, self.proc.pid -- 2.34.1