From 81bd07fc8b2b30e20a4dd4fe8f72d759a90ae5bc Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 15 Jan 2024 17:45:04 +0000 Subject: [PATCH] vmm: openapi: String quote the enum members of ConsoleConfig::Mode This disambiguates from the null keyword. Fixes: #6107 Signed-off-by: Rob Bradford --- vmm/src/api/openapi/cloud-hypervisor.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/api/openapi/cloud-hypervisor.yaml b/vmm/src/api/openapi/cloud-hypervisor.yaml index 0171ca1ce..cfc4723fe 100644 --- a/vmm/src/api/openapi/cloud-hypervisor.yaml +++ b/vmm/src/api/openapi/cloud-hypervisor.yaml @@ -994,7 +994,7 @@ components: type: string mode: type: string - enum: [Off, Pty, Tty, File, Socket, Null] + enum: ["Off", "Pty", "Tty", "File", "Socket", "Null"] iommu: type: boolean default: false