migration: make error for to-old target node even more explicitly

In that the target node is meant, as while we printed the node name
itself a user might miss that it refers to the target node when
reading this error, especially with bigger clusters and rather
similar node names like e.g. pve1, ..., pve11, pve12, ..., pve21.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2025-09-10 13:08:34 +02:00
parent 096a1ac228
commit fbf6a480da

View file

@ -1116,7 +1116,7 @@ sub phase2_start_local_cluster {
noerr => 1,
);
die "node $self->{node} is too old for preserving VirtIO-net MTU, please upgrade\n"
die "target node $self->{node} is too old for preserving VirtIO-net MTU, please upgrade\n"
if $target_nets_host_mtu_not_supported;
die "remote command failed with exit code $exitcode\n" if $exitcode;