migration : enable mtunnel for insecure migration V2

We only use it to send commands faster like resume

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier 2017-09-05 11:46:17 +02:00 committed by Wolfgang Bumiller
parent 4dcce9ee3c
commit d296ed08d3

View File

@ -599,8 +599,9 @@ sub phase2 {
die "unable to detect remote migration address\n" if !$raddr; die "unable to detect remote migration address\n" if !$raddr;
$self->log('info', "start remote tunnel");
if ($migration_type eq 'secure') { if ($migration_type eq 'secure') {
$self->log('info', "start remote tunnel");
if ($ruri =~ /^unix:/) { if ($ruri =~ /^unix:/) {
unlink $raddr; unlink $raddr;
@ -633,6 +634,9 @@ sub phase2 {
} else { } else {
die "unsupported protocol in migration URI: $ruri\n"; die "unsupported protocol in migration URI: $ruri\n";
} }
} else {
#fork tunnel for insecure migration, to send faster commands like resume
$self->{tunnel} = $self->fork_tunnel();
} }
my $start = time(); my $start = time();