Message ID | 20220331190633.121077-10-victortoso@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix some qapi examples | expand |
Victor Toso <victortoso@redhat.com> writes: > Example output is missing mandatory argument @share for the return > JSON object. Add it. > > Signed-off-by: Victor Toso <victortoso@redhat.com> > --- > qapi/machine.json | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/qapi/machine.json b/qapi/machine.json > index 968f912989..d25a481ce4 100644 > --- a/qapi/machine.json > +++ b/qapi/machine.json > @@ -839,6 +839,7 @@ > # "merge": false, > # "dump": true, > # "prealloc": false, > +# "share": false, > # "host-nodes": [0, 1], > # "policy": "bind" > # }, > @@ -847,6 +848,7 @@ > # "merge": false, > # "dump": true, > # "prealloc": true, > +# "share": false, > # "host-nodes": [2, 3], > # "policy": "preferred" > # } Reviewed-by: Markus Armbruster <armbru@redhat.com>
diff --git a/qapi/machine.json b/qapi/machine.json index 968f912989..d25a481ce4 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -839,6 +839,7 @@ # "merge": false, # "dump": true, # "prealloc": false, +# "share": false, # "host-nodes": [0, 1], # "policy": "bind" # }, @@ -847,6 +848,7 @@ # "merge": false, # "dump": true, # "prealloc": true, +# "share": false, # "host-nodes": [2, 3], # "policy": "preferred" # }
Example output is missing mandatory argument @share for the return JSON object. Add it. Signed-off-by: Victor Toso <victortoso@redhat.com> --- qapi/machine.json | 2 ++ 1 file changed, 2 insertions(+)