Skip to content

Commit

Permalink
addressing comments from David R.
Browse files Browse the repository at this point in the history
  • Loading branch information
edcdavid committed Nov 7, 2023
1 parent eaac1cb commit 9a5ff40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cnf-certification-test/performance/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a5ff40

Please sign in to comment.