Skip to content

Commit 490381c

Browse files
authored
Add awsImporter.RepoName to importersToRun flag
1 parent 4df2518 commit 490381c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hashr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import (
5252

5353
var (
5454
processingWorkerCount = flag.Int("processing_worker_count", 2, "Number of processing workers.")
55-
importersToRun = flag.String("importers", strings.Join([]string{}, ","), fmt.Sprintf("Importers to be run: %s,%s,%s,%s,%s,%s,%s,%s,%s", gcp.RepoName, targz.RepoName, windows.RepoName, wsus.RepoName, deb.RepoName, rpm.RepoName, zip.RepoName, gcr.RepoName, iso9660.RepoName))
55+
importersToRun = flag.String("importers", strings.Join([]string{}, ","), fmt.Sprintf("Importers to be run: %s,%s,%s,%s,%s,%s,%s,%s,%s,%s", gcp.RepoName, awsImporter.RepoName, targz.RepoName, windows.RepoName, wsus.RepoName, deb.RepoName, rpm.RepoName, zip.RepoName, gcr.RepoName, iso9660.RepoName))
5656
exportersToRun = flag.String("exporters", strings.Join([]string{}, ","), fmt.Sprintf("Exporters to be run: %s,%s", gcpExporter.Name, postgresExporter.Name))
5757
jobStorage = flag.String("storage", "", "Storage that should be used for storing data about processing jobs, can have one of the two values: postgres, cloudspanner")
5858
cacheDir = flag.String("cache_dir", "/tmp/", "Path to cache dir used to store local cache.")

0 commit comments

Comments
 (0)