Skip to content

Commit

Permalink
Add awsImporter.RepoName to importersToRun flag
Browse files Browse the repository at this point in the history
  • Loading branch information
meeehow authored May 22, 2024
1 parent 4df2518 commit 490381c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hashr.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import (

var (
processingWorkerCount = flag.Int("processing_worker_count", 2, "Number of processing workers.")
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))
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))
exportersToRun = flag.String("exporters", strings.Join([]string{}, ","), fmt.Sprintf("Exporters to be run: %s,%s", gcpExporter.Name, postgresExporter.Name))
jobStorage = flag.String("storage", "", "Storage that should be used for storing data about processing jobs, can have one of the two values: postgres, cloudspanner")
cacheDir = flag.String("cache_dir", "/tmp/", "Path to cache dir used to store local cache.")
Expand Down

0 comments on commit 490381c

Please sign in to comment.