From 9be3bec4f5c3b644441c2d71c5c4883e61d8ad5a Mon Sep 17 00:00:00 2001 From: Marcus Pasell <3690498+rickyrombo@users.noreply.github.com> Date: Wed, 9 Sep 2026 14:37:52 -0700 Subject: [PATCH] fix(config): stop routing prod uploads to v.monophonic.digital Resumable (tus) uploads cannot complete through the Cloudflare zone in front of v.monophonic.digital: HEAD /files/:id reaches tusd as GET and returns 405, so a client can never learn its offset to resume after an interrupted PATCH, and PATCH requests lasting longer than ~100s are cut off with a 524. /uploads/:id responses are also served from cache. Roughly half of album uploads have been landing there by rendezvous and stalling at a few percent before failing. Route prod uploads to creatornode.audius.co only until the zone is fixed. The node stays in StoreAllNodes and the reward sender list, which do not depend on the upload path. Co-Authored-By: Claude Fable 5.1 --- config/nodes.go | 1 - 1 file changed, 1 deletion(-) diff --git a/config/nodes.go b/config/nodes.go index efce31eb..61b147f3 100644 --- a/config/nodes.go +++ b/config/nodes.go @@ -20,7 +20,6 @@ type Node struct { var ( ProdUploadNodes = []string{ "https://creatornode.audius.co", - "https://v.monophonic.digital", } StageUploadNodes = []string{ "https://creatornode6.staging.audius.co",