From cb79dddf336f99e1441c6e835659b19fc3e500c9 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 7 Sep 2020 13:56:55 +0100 Subject: [PATCH] agent: Fix OCI Windows network shared container name typo Correct the typo which would break the Windows-specific OCI network shared container name feature. See: - https://github.com/opencontainers/runtime-spec/blob/master/config-windows.md#network Fixes: #685. Signed-off-by: James O. D. Hunt --- src/agent/oci/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/oci/src/lib.rs b/src/agent/oci/src/lib.rs index 19870db51b..0c4794f6e7 100644 --- a/src/agent/oci/src/lib.rs +++ b/src/agent/oci/src/lib.rs @@ -653,7 +653,7 @@ pub struct WindowsNetwork { #[serde( default, skip_serializing_if = "String::is_empty", - rename = "nwtworkSharedContainerName" + rename = "networkSharedContainerName" )] pub network_shared_container_name: String, }