Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/test volatile #2039

Merged
merged 10 commits into from
Apr 17, 2024
Prev Previous commit
Next Next commit
wip: tell where is the already existing net
  • Loading branch information
frankiejol committed Apr 10, 2024
commit c1586e177fc8e1cd7982a4ca991e8d3976588733
3 changes: 2 additions & 1 deletion lib/Ravada/VM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,8 @@ sub _around_create_network($orig, $self,$data, $id_owner, $request=undef) {
my ($found) = grep { $_->{$field} eq $data->{$field} }
$self->list_virtual_networks();

die "Error: network $field=$data->{$field} already exists\n"
die "Error: network $field=$data->{$field} already exists in "
.$self->name."\n"
if $found;
}

Expand Down