mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 14:35:56 +03:00
[GH-ISSUE #49] [Bug]: Upgrade Node - Fetch Failed #62
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#62
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Trembler34 on GitHub (Feb 25, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/49
Bug Description
Trying to update the node, click on start upgrade and get the fetch failed error.
Steps to Reproduce
Click the update notification > upgrade > Start Update
Expected Behavior
Node upgrades
Actual Behavior
Fetch Error
ProxCenter Version
latest
Proxmox VE Version
latest
Browser
Chrome
Logs / Screenshots
@adminsyspro commented on GitHub (Feb 25, 2026):
Fixed in commit
06f3742.Root cause:
NodeUpdateDialogcalled the Go orchestrator (/api/v1/orchestrator/rolling-updates), which is not deployed in Community Edition →fetch()fails withECONNREFUSED.Fix: Single-node updates now use direct SSH instead of the orchestrator:
POST/GET /api/v1/connections/:id/nodes/:node/upgrade+POST .../upgrade/rebootNodeUpdateDialogrewritten to use the SSH-based flow (start, poll logs, auto-reboot)@Trembler34 commented on GitHub (Feb 25, 2026):
It saying SSH is not enabled but you can see it is and it works.
@adminsyspro commented on GitHub (Feb 26, 2026):
Fix pushed in commit
963c25a.Root cause: The connection API returns
{ data: { sshEnabled: ... } }but the dialog was readingjson.sshEnabledat the top level — which is alwaysundefined(falsy), so the SSH warning was always triggered regardless of your actual SSH configuration.Fix: Changed the check to read
json.data?.sshEnabledinstead.Please update and confirm the issue is resolved on your end — keeping this open until then.
@Trembler34 commented on GitHub (Feb 26, 2026):
Its working now.. Thank you.