mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 14:35:56 +03:00
[GH-ISSUE #84] [Bug]: LXC container snapshots fail with "vmstate: property is not defined in schema" #132
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#132
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 @Psycs on GitHub (Mar 8, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/84
Bug Description
When attempting to take a snapshot of an LXC container through ProxCenter the below error is generated;
Error (snapshot): PVE 400 /nodes/proxmox01/lxc/109/snapshot: {"errors":{"vmstate":"property is not defined in schema and the schema does not allow additional properties"},"message":"Parameter verification failed.\n","data":null}
Steps to Reproduce
Expected Behavior
Snapshot is created successfully.
Actual Behavior
Snapshot fails with a PVE 400 error:
ProxCenter Version
87bedd9Proxmox VE Version
9.0.10
Browser
No response
Logs / Screenshots
@adminsyspro commented on GitHub (Mar 8, 2026):
Thanks for the report! This is now fixed — the
vmstateparameter was being sent to the Proxmox API for all guest types, but LXC containers don't support it (only QEMU VMs do).The fix filters out the
vmstateparameter for LXC snapshots on the backend, and hides the "Include RAM" toggle in the UI when working with containers.Will be included in the next release.