Skip to content

Commit

Permalink
Make max tasks in cloud indexing configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Jan 18, 2021
1 parent bda0023 commit 01c6d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registryindexer/main.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
max_n = 1_000_000
max_versions = 1_000_000
max_tasks = 36
max_tasks = length(ARGS)>1 ? parse(Int, ARGS[2]) : 1

julia_versions = [v"1.5.3", v"1.4.0"]

Expand Down

0 comments on commit 01c6d6e

Please sign in to comment.