Skip to content

Commit

Permalink
Update pkg/benchmark/benchmark.go
Browse files Browse the repository at this point in the history
  • Loading branch information
spowelljr authored Oct 13, 2023
1 parent 35a15a5 commit cc36f19
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pkg/benchmark/benchmark.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ func NewBenchmarkRunConfig(profile, imageList, iterList, benchMethodList string,
MinikubeStartArgs: minikubeStartArgs,
Profile: profile,
}
var split []string
if imageList == "" {
split = Images
} else {
split := Images
if imageList != "" {
split = strings.Split(imageList, ",")
}
for _, image := range split {
Expand Down

0 comments on commit cc36f19

Please sign in to comment.