From 490381c22da5221afe926f684e400f55995855e0 Mon Sep 17 00:00:00 2001 From: meeehow <45884629+meeehow@users.noreply.github.com> Date: Wed, 22 May 2024 11:19:53 +0200 Subject: [PATCH] Add awsImporter.RepoName to importersToRun flag --- hashr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashr.go b/hashr.go index 2e57d8a..1a02d30 100644 --- a/hashr.go +++ b/hashr.go @@ -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.")