From 002d89e221fa845ec5d0a4fcb8ee5e7ad293dc7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 22 Nov 2025 19:52:50 +0100 Subject: [PATCH] fix: disable tqdm progress bars to prevent BrokenPipeError MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add TQDM_DISABLE=1 environment variable to ComfyUI service to fix BrokenPipeError during sampling operations. This is caused by ComfyUI-Manager's stderr wrapper interfering with tqdm's progress bar mechanism. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisord.conf b/supervisord.conf index 84f7551..24618e5 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -35,7 +35,7 @@ stdout_logfile_maxbytes=50MB stdout_logfile_backups=10 stderr_logfile_maxbytes=50MB stderr_logfile_backups=10 -environment=HF_HOME="/workspace/huggingface_cache",PYTORCH_CUDA_ALLOC_CONF="expandable_segments:True" +environment=HF_HOME="/workspace/huggingface_cache",PYTORCH_CUDA_ALLOC_CONF="expandable_segments:True",TQDM_DISABLE="1" priority=100 stopwaitsecs=30