Skip to content

Commit

Permalink
fix: dashboard undefined error (#5510)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicufk authored May 29, 2024
1 parent f7bbea5 commit 3b1d55f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/kubectl-testkube/commands/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ func openOnPremDashboard(cmd *cobra.Command, cfg config.Data, verbose bool, lice

err = k8sclient.PortForward(ctx, cfg.Namespace, config.EnterpriseMinioName, config.EnterpriseMinioPort, config.EnterpriseMinioPortFrwardingPort, verbose)
if err != nil {
errs = append(errs, err)
sendTelemetry(cmd, cfg, license, "port forwarding minio")
}
ui.PrintOnError("port forwarding minio", err)
ui.ExitOnError("port forwarding minio", err)

err = open.Run(uri)
if err != nil {
Expand Down

0 comments on commit 3b1d55f

Please sign in to comment.