From 9a5ff404019e1a7643cebafa8624feaab49c90f9 Mon Sep 17 00:00:00 2001 From: David Elie-Dit-Cosaque Date: Tue, 7 Nov 2023 12:02:58 -0600 Subject: [PATCH] addressing comments from David R. --- cnf-certification-test/performance/suite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cnf-certification-test/performance/suite.go b/cnf-certification-test/performance/suite.go index f28211d5f..fad47e3d1 100644 --- a/cnf-certification-test/performance/suite.go +++ b/cnf-certification-test/performance/suite.go @@ -248,7 +248,7 @@ func getExecProbesCmds(c *provider.Container) map[string]bool { cmds[cmd] = true } - if c.StartupProbe != nil && c.StartupProbe.Exec.Command != nil { + if c.StartupProbe != nil && c.StartupProbe.Exec != nil { cmd := strings.Join(c.StartupProbe.Exec.Command, "") cmd = strings.Join(strings.Fields(cmd), "") cmds[cmd] = true