Skip to content

Commit 218b9c0

Browse files
authored
Merge pull request #75 from replicatedhq/analyze-spec
Fix
2 parents 5830eb3 + 0b493a5 commit 218b9c0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ffi/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import "C"
44

55
import (
66
"fmt"
7-
"context"
87
"encoding/json"
98

109
"gopkg.in/yaml.v2"

pkg/analyze/download.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type fileContentProvider struct {
2020
rootDir string
2121
}
2222

23-
func DownloadAndAnalyze(analyzersSpec string, bundleURL string) ([]*AnalyzeResult, error) {
23+
func DownloadAndAnalyze(bundleURL string, analyzersSpec string) ([]*AnalyzeResult, error) {
2424
tmpDir, err := ioutil.TempDir("", "troubleshoot-k8s")
2525
if err != nil {
2626
return nil, errors.Wrap(err, "failed to create temp dir")

0 commit comments

Comments
 (0)