Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion health.go
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,7 @@ func RunOpsHealthCheck(resp http.ResponseWriter, request *http.Request) {
}
}

resp.Header().Set("Content-Type", "application/json")
resp.WriteHeader(200)
resp.Write(platformData)
}
Expand Down Expand Up @@ -1299,7 +1300,7 @@ func RunOpsWorkflow(apiKey string, orgId string, cloudRunUrl string) (WorkflowHe
}

updateOpsCache(workflowHealth)
timeout := time.After(5 * time.Minute)
timeout := time.After(10 * time.Minute)

// 3. Check if workflow ran successfully
// ping /api/v1/streams/results/<execution_id> while workflowHealth.RunFinished is false
Expand Down
Loading