Fixed subflow selection with autocomplete mechanism

This commit is contained in:
frikky
2021-12-21 01:28:29 +01:00
parent 76b156750d
commit b9d30419fa
6 changed files with 321 additions and 206 deletions
@@ -0,0 +1,25 @@
version: '3'
services:
orborus:
image: ghcr.io/frikky/shuffle-orborus:nightly
container_name: shuffle-orborus
hostname: shuffle-orborus
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- SHUFFLE_APP_SDK_VERSION=nightly
- SHUFFLE_WORKER_VERSION=nightly
- ORG_ID=Shuffle
- ENVIRONMENT_NAME=Shuffle
- BASE_URL=http://192.168.86.39:5001
- DOCKER_API_VERSION=1.40
- SHUFFLE_SCALE_REPLICAS=5
- SHUFFLE_SWARM_CONFIG=run
restart: unless-stopped
networks:
- shuffle-executions
networks:
shuffle-executions:
driver: overlay
external: true
+5
View File
@@ -557,6 +557,11 @@ func handleSubworkflowExecution(client *http.Client, workflowExecution shuffle.W
}
}
if apikey == "" {
log.Printf("[DEBUG][%s] Replacing apikey with parent auth", workflowExecution.ExecutionId)
apikey = workflowExecution.Authorization
}
//handleSubworkflowExecution(workflowExecution, action)
status := "SUCCESS"
baseResult := `{"success": true}`