Rebuilding all containers with new shuffle-shared

This commit is contained in:
frikky
2023-05-18 16:31:36 +02:00
parent c6f32f6ddf
commit 012371c922
6 changed files with 11 additions and 7 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
#!/bin/sh
docker stop shuffle-backend
docker rm shuffle-backend
docker rmi frikky/shuffle:backend
docker rmi ghcr.io/shuffle/shuffle-backend:latest
docker build . -t shuffle/shuffle:backend
docker push shuffle/shuffle:backend
docker build . -t ghcr.io/shuffle/shuffle-backend:latest
#docker push ghcr.io/shuffle/shuffle-backend:latest
echo "Starting server"
#docker run -it \
+1 -1
View File
@@ -19,7 +19,7 @@ require (
github.com/gorilla/mux v1.8.0
github.com/h2non/filetype v1.1.3
github.com/satori/go.uuid v1.2.0
github.com/shuffle/shuffle-shared v0.4.13
github.com/shuffle/shuffle-shared v0.4.14
golang.org/x/crypto v0.3.0
google.golang.org/api v0.103.0
google.golang.org/appengine v1.6.7
+3 -1
View File
@@ -643,7 +643,7 @@ func handleWorkflowQueue(resp http.ResponseWriter, request *http.Request) {
resp.Write([]byte(fmt.Sprintf(`{"success": true, "reason": "success"}`)))
return
} else {
log.Printf("[DEBUG] Handling other execution variant (subflow): %s", err)
log.Printf("[DEBUG] Handling other execution variant (subflow?): %s", err)
}
var actionResult shuffle.ActionResult
@@ -757,6 +757,8 @@ func handleWorkflowQueue(resp http.ResponseWriter, request *http.Request) {
// Will make sure transactions are always ran for an execution. This is recursive if it fails. Allowed to fail up to 5 times
func runWorkflowExecutionTransaction(ctx context.Context, attempts int64, workflowExecutionId string, actionResult shuffle.ActionResult, resp http.ResponseWriter) {
log.Printf("[DEBUG] Running workflow execution transaction for %s", workflowExecutionId)
// Should start a tx for the execution here
workflowExecution, err := shuffle.GetWorkflowExecution(ctx, workflowExecutionId)
if err != nil {