From 9cdc6ee40902de6f79840e53476b206822396a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Nov 2025 06:30:18 +0100 Subject: [PATCH] fix: correct Koel memory limit value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove 'M' suffix from MEDIA_KOEL_MEMORY_LIMIT as Koel appends it automatically, causing "512MM" error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- arty.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arty.yml b/arty.yml index 7f00df0..70dc5c3 100644 --- a/arty.yml +++ b/arty.yml @@ -159,7 +159,7 @@ envs: MEDIA_KOEL_TRAEFIK_HOST: koel.media.pivoine.art MEDIA_KOEL_DB_NAME: koel MEDIA_KOEL_DEBUG: false - MEDIA_KOEL_MEMORY_LIMIT: 512M + MEDIA_KOEL_MEMORY_LIMIT: 512 MEDIA_KOEL_STREAMING_METHOD: x-sendfile # PairDrop DROP_TRAEFIK_ENABLED: true