Skip to content

Commit 89090fd

Browse files
yasinBursaliclaude
andcommitted
fix(extensions-portal): increase install timeout and nginx proxy_read_timeout
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8481a94 commit 89090fd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dream-server/extensions/services/dashboard/nginx.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ server {
2727
proxy_set_header Connection "close";
2828
# B1 fix: Auth header injected by entrypoint.sh after reading key from file/env
2929
proxy_set_header Authorization "Bearer ${DASHBOARD_API_KEY}";
30+
proxy_read_timeout 180s;
3031
}
3132

3233
# Cache static assets

dream-server/extensions/services/dashboard/src/pages/Extensions.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default function Extensions() {
9797
: `/api/extensions/${serviceId}/${action}`
9898
const res = await fetch(url, {
9999
method: action === 'uninstall' ? 'DELETE' : 'POST',
100-
signal: AbortSignal.timeout(15000),
100+
signal: AbortSignal.timeout(120000),
101101
})
102102
if (!res.ok) {
103103
const err = await res.json().catch(() => ({}))

0 commit comments

Comments
 (0)