Skip to content

Commit

Permalink
fix: error text
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Nov 12, 2024
1 parent bfb82dc commit f33c5c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/api/v1/testworkflows.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ func (s *TestkubeAPI) ExecuteTestWorkflowHandler() fiber.Handler {
request.TestWorkflowExecutionName = strings.Clone(c.Query("testWorkflowExecutionName"))
parallelism, err := strconv.Atoi(c.Query("parallelism", strconv.Itoa(scheduler.DefaultConcurrencyLevel)))
if err != nil {
return s.BadRequest(c, errPrefix, "can't detect parallelism:", err)
return s.BadRequest(c, errPrefix, "can't detect parallelism", err)
}

workerpoolService := workerpool.New[testworkflowsv1.TestWorkflow, testkube.TestWorkflowExecutionRequest, testkube.TestWorkflowExecution](parallelism)
Expand Down

0 comments on commit f33c5c9

Please sign in to comment.