mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-05-03 07:18:36 +00:00
revert spice_ticket prefix change in 7827de4
The change to the prefixed version broke migration from new to old qemu-server version. This reverts the change and adds a TODO comment for 7.0 to change it to the prefixed version then. Signed-off-by: Mira Limbeck <m.limbeck@proxmox.com>
This commit is contained in:
parent
746232eeb1
commit
ff09c795ed
@ -601,8 +601,9 @@ sub phase2 {
|
|||||||
my $sock_addr = [];
|
my $sock_addr = [];
|
||||||
# version > 0 for unix socket support
|
# version > 0 for unix socket support
|
||||||
my $nbd_protocol_version = 1;
|
my $nbd_protocol_version = 1;
|
||||||
my $input = "nbd_protocol_version: $nbd_protocol_version\n";
|
# TODO change to 'spice_ticket: <ticket>\n' in 7.0
|
||||||
$input .= "spice_ticket: $spice_ticket\n" if $spice_ticket;
|
my $input = $spice_ticket ? "$spice_ticket\n" : "\n";
|
||||||
|
$input .= "nbd_protocol_version: $nbd_protocol_version\n";
|
||||||
|
|
||||||
# Note: We try to keep $spice_ticket secret (do not pass via command line parameter)
|
# Note: We try to keep $spice_ticket secret (do not pass via command line parameter)
|
||||||
# instead we pipe it through STDIN
|
# instead we pipe it through STDIN
|
||||||
|
Loading…
Reference in New Issue
Block a user