likyh commented on code in PR #2569:
URL: https://github.com/apache/incubator-devlake/pull/2569#discussion_r926788413
##########
services/pipeline.go:
##########
@@ -77,9 +78,16 @@ func pipelineServiceInit() {
if err != nil {
panic(err)
}
+
+ var pipelineMaxParallel = cfg.GetInt64("PIPELINE_MAX_PARALLEL")
+ if pipelineMaxParallel <= 0 {
Review Comment:
ok, now pipelineMaxParallel=0 means NO LIMIT by set pipelineMaxParallel =
10000. The reason of setting 10000 is avoid too many `if` in RunPipelineInQueue
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]