From cbd1e77f7071cf17566eb4abf9ec78578d6a029f Mon Sep 17 00:00:00 2001 From: Alex Masi Date: Wed, 17 Aug 2022 22:53:03 -0700 Subject: [PATCH] add validation for resetter interface for cptx (#191) --- topo/node/cptx/cptx.go | 1 + 1 file changed, 1 insertion(+) diff --git a/topo/node/cptx/cptx.go b/topo/node/cptx/cptx.go index ce04254d..13285b4c 100644 --- a/topo/node/cptx/cptx.go +++ b/topo/node/cptx/cptx.go @@ -63,6 +63,7 @@ type Node struct { // Add validations for interfaces the node provides var ( _ node.ConfigPusher = (*Node)(nil) + _ node.Resetter = (*Node)(nil) ) // SpawnCLIConn spawns a CLI connection towards a Network OS using `kubectl exec` terminal and ensures CLI is ready