From 54ade15f9e9596e7035d78630aa3da91ca3369e9 Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Thu, 20 Feb 2020 16:38:15 +0100 Subject: [PATCH] vmm: openapi: Fix "readonly" and "wce" defaults in DiskConfig Fix "readonly" and "wce" defaults in cloud-hypervisor.yaml to match their respective defaults in config.rs:DiskConfig. Signed-off-by: Sergio Lopez --- vmm/src/api/openapi/cloud-hypervisor.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vmm/src/api/openapi/cloud-hypervisor.yaml b/vmm/src/api/openapi/cloud-hypervisor.yaml index 626274006..926e710a2 100644 --- a/vmm/src/api/openapi/cloud-hypervisor.yaml +++ b/vmm/src/api/openapi/cloud-hypervisor.yaml @@ -276,7 +276,7 @@ components: type: string readonly: type: boolean - default: true + default: false iommu: type: boolean default: false @@ -293,7 +293,7 @@ components: type: string wce: type: boolean - default: false + default: true NetConfig: type: object