Skip to content

Commit

Permalink
fix: remove unused param
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <vladislav@kubeshop.io>
  • Loading branch information
vsukhin committed Feb 14, 2025
1 parent 4f450fe commit b6cd285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/kubectl-testkube/commands/testworkflows/rerun.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func NewReRunTestWorkflowExecutionCmd() *cobra.Command {
}

outputPretty := outputType == render.OutputPretty
namespace := cmd.Flag("namespace").Value.String()

client, _, err := common.GetClient(cmd)
ui.ExitOnError("getting client", err)

Expand Down Expand Up @@ -97,7 +97,7 @@ func NewReRunTestWorkflowExecutionCmd() *cobra.Command {
}
}

ui.ExitOnError("rerun test workflow execution "+executionID+" from namespace "+namespace, err)
ui.ExitOnError("rerun test workflow execution "+executionID, err)

go func() {
<-cmd.Context().Done()
Expand Down

0 comments on commit b6cd285

Please sign in to comment.