From f2a232d174bc8dc24b3fac2cc8ad1fb74c4faa98 Mon Sep 17 00:00:00 2001 From: Daniel Budris Date: Fri, 17 Sep 2021 11:05:34 -0400 Subject: [PATCH] use `analyzerResults` not `analysis` for key --- cmd/troubleshoot/cli/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/troubleshoot/cli/run.go b/cmd/troubleshoot/cli/run.go index e1360714..0624b454 100644 --- a/cmd/troubleshoot/cli/run.go +++ b/cmd/troubleshoot/cli/run.go @@ -277,7 +277,7 @@ type analysisOutput struct { func (a *analysisOutput) FormattedAnalysisOutput() (outputJson string, err error) { type convertedOutput struct { - ConvertedAnalysis []*convert.Result `json:"analysis"` + ConvertedAnalysis []*convert.Result `json:"analyzerResults"` ArchivePath string `json:"archivePath"` }