mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-26 08:05:54 +03:00
[GH-ISSUE #59] Getting a 500 error if any storage pool is stopped when I try to create a new VM. #46
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 @kimnzl on GitHub (May 25, 2013).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/59
On WebVirtMgr panel v2.0.0 created from a new git clone.
I get a 500 error if any storage pool is stopped when I try to create a new VM.
It might be useful to trap this error and handle it by either telling the user about the problem or by giving the option to start the pool directly from the error page.
Debug:
@retspen commented on GitHub (May 27, 2013):
Need only active storage pool for create VM.
@kimnzl commented on GitHub (May 27, 2013):
Does that mean you need all the pools active to create VMs?
Or just the one you plan on using for storage?
@retspen commented on GitHub (May 27, 2013):
Need at least one where the VM images will be saved. Got to storage page and click button: "Start" or create new storage pool.
@kimnzl commented on GitHub (May 30, 2013):
When I have:
storage pool 'default' online (started)
storage pool 'ubuntu1304' offline (stopped)
storage pool 'storage' online (started)
I still get the error. I would expect based on what you have said that this is not what is meant to happen.
As far as I can see from the code all pools would need to be started for it to work and allow for a new VM.
How can a storage location be refreshed 'stg.refresh(0)' if it is not started?
@retspen commented on GitHub (May 30, 2013):
Fix this bug
github.com/retspen/webvirtmgr@86e30ac1e8Need update@kimnzl commented on GitHub (May 30, 2013):
Thanks for all your hard work.