Skip to content
Snippets Groups Projects
Unverified Commit e93a30e2 authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Reduce number of parallel jobs to 10

parent deaaaec0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -14,8 +14,8 @@ var (
verbose = flag.Bool("verbose", true, "Print verbose messages")
dryRun = flag.Bool("dry-run", true, "Dry run")
storage = flag.String("storage", "filesystem", "Storage type to use: filesystem or s3")
jobs = flag.Int("jobs", 100, "Number of concurrent jobs to execute")
parallelWalkJobs = flag.Int("parallel-walk-jobs", 100, "Number of concurrent parallel walk jobs to execute")
jobs = flag.Int("jobs", 10, "Number of concurrent jobs to execute")
parallelWalkJobs = flag.Int("parallel-walk-jobs", 10, "Number of concurrent parallel walk jobs to execute")
)
 
func main() {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment