openidec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit af6c67365eb79aecde74a1b81e39833b8fb8cb1c
parent 070c30d469b5b267bc9a3494974df5db79f421a1
Author: Peter Kosyh <p.kosyh@gmail.com>
Date:   Tue,  1 Sep 2020 23:37:22 +0300

-j parameter

Diffstat:
Mii-tool/main.go | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/ii-tool/main.go b/ii-tool/main.go @@ -57,8 +57,10 @@ func main() { lim_opt := flag.Int("lim", 0, "Fetch last N messages") verbose_opt := flag.Bool("v", false, "Verbose") users_opt := flag.String("u", "points.txt", "Users database") + conns_opt := flag.Int("j", 6, "Maximum parallel jobs") flag.Parse() + ii.MaxConnections = *conns_opt if *verbose_opt { ii.OpenLog(os.Stdout, os.Stdout, os.Stderr) }