Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta committed Oct 27, 2023
1 parent 346f10c commit 91d3d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/frontend/handlers/dag.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ func (h *DAGHandler) PostAction(params operations.PostDagActionParams) (*models.
return &models.PostDagActionResponse{NewDagID: params.Body.Value}, nil

default:
return nil, response.NewBadRequestError(fmt.Errorf("invalid action: %s", params.Body.Action))
return nil, response.NewBadRequestError(fmt.Errorf("invalid action: %s", *params.Body.Action))
}

return &models.PostDagActionResponse{}, nil
Expand Down

0 comments on commit 91d3d0f

Please sign in to comment.