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 -1
View File
@@ -45,7 +45,7 @@ services:
- database
orborus:
#build: ./functions/onprem/orborus
image: ghcr.io/frikky/shuffle-orborus:0.8.32
image: ghcr.io/frikky/shuffle-orborus:0.8.40
container_name: shuffle-orborus
hostname: shuffle-orborus
networks:
+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)
}