Support bundles: fix user collector permissions and format collector output (#64531)

* fix user collector permissions and format collector output

* lint
This commit is contained in:
Ieva
2023-03-09 16:43:18 +00:00
committed by GitHub
parent 3336327306
commit ed11c32c1d
3 changed files with 6 additions and 4 deletions

View File

@@ -137,7 +137,7 @@ func (uss *UsageStats) supportBundleCollector() supportbundles.Collector {
return nil, err
}
data, err := json.Marshal(report)
data, err := json.MarshalIndent(report, "", " ")
if err != nil {
return nil, err
}