Add default number of threads

This commit is contained in:
Omar Roth 2018-02-05 19:08:36 -06:00
parent fb80d2f484
commit c8d2d12282

View File

@ -24,7 +24,7 @@ threads = 10
OptionParser.parse! do |parser|
parser.banner = "Usage: invidious [arguments]"
parser.on("-t THREADS", "--threads=THREADS", "Number of threads for crawling") do |number|
parser.on("-t THREADS", "--threads=THREADS", "Number of threads for crawling (default: 10)") do |number|
begin
threads = number.to_i32
rescue ex