FEATURE: Added max concurrency executions to orborus

This commit is contained in:
frikky
2020-12-29 19:38:09 +01:00
parent 45665921a8
commit 848fabe789
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -324,6 +324,7 @@ func main() {
tmpInt, err := strconv.Atoi(concurrencyEnv)
if err == nil {
maxConcurrency = tmpInt
log.Printf("[INFO] Max workflow execution concurrency set to %d", maxConcurrency)
} else {
log.Printf("[WARNING] Env SHUFFLE_ORBORUS_EXECUTION_CONCURRENCY must be a number, not %s. Defaulted to %d", workerTimeoutEnv, maxConcurrency)
}