From df9a4015a539899f66030e2328b4d9c0aa9b1f97 Mon Sep 17 00:00:00 2001 From: Ruidong Cao Date: Sat, 9 Mar 2019 03:29:27 +0800 Subject: [PATCH] Network: remove Physical field in VethEndpoint This a bool field. It is useless because veth endpoint is never a physical endpoint. Fixes #1343 Signed-off-by: Ruidong Cao --- virtcontainers/veth_endpoint.go | 1 - 1 file changed, 1 deletion(-) diff --git a/virtcontainers/veth_endpoint.go b/virtcontainers/veth_endpoint.go index 66994a1497..cafb454c10 100644 --- a/virtcontainers/veth_endpoint.go +++ b/virtcontainers/veth_endpoint.go @@ -15,7 +15,6 @@ import ( type VethEndpoint struct { NetPair NetworkInterfacePair EndpointProperties NetworkInfo - Physical bool EndpointType EndpointType PCIAddr string }