Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose feature flags for collectors, diagnosers, exporters #52

Closed
wants to merge 14 commits into from
Closed
Prev Previous commit
Next Next commit
rename for clarity
  • Loading branch information
davidkydd committed May 8, 2021
commit 2b66c39903f21a4950edcf35b9f11b8bf0221ac2
4 changes: 2 additions & 2 deletions cmd/aks-periscope/aks-periscope.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ func main() {
waitgroup.Wait()

log.Print("Zip result files")
outputs, err := zipOutputDirectory()
zippedOutputs, err := zipOutputDirectory()
if err != nil {
log.Printf("Failed to zip result files: %+v", err)
}

log.Print("Run exporters for result files")
err = runExporters(exporters, outputs)
err = runExporters(exporters, zippedOutputs)
if err != nil {
log.Printf("Failed to export result files: %+v", err)
}
Expand Down