From b7b6f55af6ae0aa367994d2fd0f326d2484f11b2 Mon Sep 17 00:00:00 2001 From: Cyrill Troxler Date: Thu, 5 Dec 2024 14:02:56 +0100 Subject: [PATCH] fix: stats output app project 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. --- get/application.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get/application.go b/get/application.go index d01933b..4607f8b 100644 --- a/get/application.go +++ b/get/application.go @@ -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,