@local is unstable in MigrationParameters, but not in MigrationParameter. Fix the latter.
Fixes: c9affb8e9b (qapi: add local migration parameter) Signed-off-by: Markus Armbruster <[email protected]> --- qapi/migration.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qapi/migration.json b/qapi/migration.json index f7628b55e9..9a1cc7c4e5 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -804,8 +804,8 @@ # # Features: # -# @unstable: Members @x-checkpoint-delay, @x-rdma-chunk-size, and -# @x-vcpu-dirty-limit-period are experimental. +# @unstable: Members @local, @x-checkpoint-delay, @x-rdma-chunk-size, +# and @x-vcpu-dirty-limit-period are experimental. # # Since: 2.4 ## @@ -831,7 +831,7 @@ 'direct-io', { 'name': 'x-rdma-chunk-size', 'features': [ 'unstable' ] }, 'cpr-exec-command', - 'local'] } + { 'name': 'local', 'features': [ 'unstable' ] } ] } ## # @migrate-set-parameters: -- 2.55.0
