Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Ravada-Mirror
Commits
0fd5db21
Commit
0fd5db21
authored
Oct 02, 2017
by
Francesc Guasch
Browse files
Raise error if failed getting the VM id
parent
2e5632cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/Ravada.pm
View file @
0fd5db21
...
...
@@ -1074,7 +1074,7 @@ sub list_bases {
for
my
$vm
(
@
{
$self
->
vm
})
{
for
my
$domain
(
$vm
->
list_domains
)
{
eval
{
$domain
->
id
};
warn
$@
if
$@
;
confess
$@
if
$@
;
next
if
$@
;
push
@domains
,(
$domain
)
if
$domain
->
is_base
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment