fix(files): isSharing always return true

This commit is contained in:
hexxa 2021-09-12 17:05:28 +08:00 committed by Hexxa
parent f91723eab7
commit e462c349a5
4 changed files with 22 additions and 17 deletions

View file

@ -131,7 +131,6 @@ func initDeps(cfg gocfg.ICfg) *depidx.Deps {
queueSize := cfg.GrabInt("Workers.QueueSize")
sleepCyc := cfg.GrabInt("Workers.SleepCyc")
workerCount := cfg.GrabInt("Workers.WorkerCount")
fmt.Println(queueSize, sleepCyc, workerCount)
workers := localworker.NewWorkerPool(queueSize, sleepCyc, workerCount, logger)
workers.Start()