From: Marcel van der Veldt Date: Thu, 26 Feb 2026 09:43:04 +0000 (+0100) Subject: Force bufsize=0 on subprocess X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=800ea00d1298f4d1362d87c2a0033fa69d490672;p=music-assistant-server.git Force bufsize=0 on subprocess Which should already be the default, but just in case --- 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