fix(extensions-portal): increase install timeout and nginx proxy_read_timeout#711
Merged
Lightheartdevs merged 1 commit intoLight-Heart-Labs:resources/devfrom Apr 2, 2026
Conversation
Lightheartdevs
approved these changes
Apr 1, 2026
Collaborator
|
Approved. Needs rebase onto main to fix |
7d58000 to
89090fd
Compare
Collaborator
|
Hey Yasin — good progress, here's where everything stands: Merged today: #635, #669, #670, #671, #672, #673, #706, #708, #709, #710 Need rebase (merge conflicts): #711, #712, #713, #721 — these conflict after the earlier chain merged. Once rebased they're all approved and ready to go. Still need fixes from earlier reviews:
Almost there — 4 rebases and you're done with the extensions portal chain. |
…_timeout Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
89090fd to
8cc0322
Compare
f451eac
into
Light-Heart-Labs:resources/dev
17 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Increase the frontend mutation timeout from 15 s to 120 s and add a descriptive "Installing…" hint during extension installs. Also raises the nginx
proxy_read_timeoutfrom the 60 s default to 180 s so the reverse proxy never cuts the connection before the frontend does.Why
The frontend
AbortSignal.timeout(15000)fired before the backend could complete a Docker image pull. The install would succeed in the background but users saw a false "Failed to install" error. The nginx default of 60 s created a secondary bottleneck in production that the frontend timeout fix alone would not have resolved.How
Extensions.jsx:AbortSignal.timeout(15000)→AbortSignal.timeout(120000)Extensions.jsx: addedmutatingActionstate; Install button shows "Installing…" while in flightnginx.conf: addedproxy_read_timeout 180sto the/api/location blockScope
All changes are within
dream-server/extensions/services/dashboard/.Testing
vite dev) to exercise the nginx timeoutReview
Critique Guardian: APPROVED (after nginx companion fix added)