Skip to content

Commit

Permalink
Merge pull request #124 from joshtyf/fix/compile-error
Browse files Browse the repository at this point in the history
Fix compile error after merge
  • Loading branch information
joshtyf authored Apr 28, 2024
2 parents 60c86aa + 043ba3a commit c95d811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/execute/steps.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (e *waitForApprovalStepExecutor) execute(ctx context.Context, l *logger.Exe
l.ErrGettingServiceReqFromCtx()
return nil, errors.New("error getting service request from context")
}
err := database.NewServiceRequest(e.mongoClient).UpdateStatus(serviceRequest.Id.Hex(), models.Pending)
err := database.NewServiceRequest(e.mongoClient).UpdateStatus(serviceRequest.Id.Hex(), models.PENDING)
if err != nil {
l.ErrUpdatingServiceRequestStatus(err)
return nil, err
Expand Down

0 comments on commit c95d811

Please sign in to comment.