Skip to content

Commit

Permalink
fix: stats output app project
Browse files Browse the repository at this point in the history
The stats command was displaying the wrong project when requesting the
stats output of cross-project, it always displayed the project of the
client and not the app itself.
  • Loading branch information
ctrox committed Dec 5, 2024
1 parent 1ab8209 commit b7b6f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func (cmd *applicationsCmd) printStats(ctx context.Context, c *api.Client, appLi
}

get.writeTabRow(
w, c.Project, app.Name,
w, app.Namespace, app.Name,
replica.ReplicaName,
string(replica.Status),
cpuUsage,
Expand Down

0 comments on commit b7b6f55

Please sign in to comment.