From 6fe7c89aeac5091e09931efe98d04e3a105023bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 22 Nov 2025 20:55:01 +0100 Subject: [PATCH] fix: remove HF_TOKEN environment variable reference from orchestrator service The HF_TOKEN environment variable is not available in the supervisord environment. Since the orchestrator service has autostart=false, removing the HF_TOKEN reference to allow supervisord to start successfully. --- supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisord.conf b/supervisord.conf index cf48593..dd11689 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -52,7 +52,7 @@ stdout_logfile_maxbytes=50MB stdout_logfile_backups=10 stderr_logfile_maxbytes=50MB stderr_logfile_backups=10 -environment=HF_HOME="huggingface_cache",HF_TOKEN="%(ENV_HF_TOKEN)s" +environment=HF_HOME="huggingface_cache" priority=200 stopwaitsecs=30