5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-01-21 18:03:56 +03:00

schema: fix description of migrate_downtime parameter

Since commit 865ef132 ("implement dynamic migration_downtime") the
migration downtime will be automatically increased when migration
cannot converge at the very end. Update the description to reflect
reality.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
Fiona Ebner 2024-05-03 14:01:35 +02:00 committed by Thomas Lamprecht
parent 54aa98cea5
commit ce8a5a4b7e

View File

@ -590,7 +590,10 @@ EODESCR
migrate_downtime => {
optional => 1,
type => 'number',
description => "Set maximum tolerated downtime (in seconds) for migrations.",
description => "Set maximum tolerated downtime (in seconds) for migrations. Should the"
." migration not be able to converge in the very end, because too much newly dirtied"
." RAM needs to be transferred, the limit will be increased automatically step-by-step"
." until migration can converge.",
minimum => 0,
default => 0.1,
},