Skip to content

Commit

Permalink
more descriptive action name
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Zieba <[email protected]>
  • Loading branch information
marseel committed Jul 18, 2024
1 parent 0f7b04b commit e843410
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cli/connectivity.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ import (
"syscall"
"time"

"github.com/cilium/cilium/pkg/option"
"github.com/spf13/cobra"
"github.com/spf13/pflag"

"github.com/cilium/cilium/pkg/option"

"github.com/cilium/cilium-cli/api"
"github.com/cilium/cilium-cli/connectivity"
"github.com/cilium/cilium-cli/connectivity/check"
Expand Down
4 changes: 3 additions & 1 deletion connectivity/perf/benchmarks/netperf/perfpod.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ func (s *netPerf) Run(ctx context.Context, t *check.Test) {
}

for _, test := range tests {
action := t.NewAction(s, netperfToolName, &c, server, features.IPFamilyV4)
testName := netperfToolName + "_" + test + "_" + scenarioName
action := t.NewAction(s, testName, &c, server, features.IPFamilyV4)

action.CollectFlows = false
action.Run(func(a *check.Action) {
k := common.PerfTests{
Expand Down

0 comments on commit e843410

Please sign in to comment.