Skip to content

Commit

Permalink
adapt task queue error
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen committed Mar 1, 2024
1 parent 5c1bad9 commit 99dbf3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1/server/handlers/metadata/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func (u *MetadataService) ReadinessGet(ctx echo.Context, request gen.ReadinessGe
}

if !u.config.TaskQueue.IsReady() {
return nil, fmt.Errorf("repository is not healthy")
return nil, fmt.Errorf("task queue is not healthy")
}

return gen.ReadinessGet200Response{}, nil
Expand Down

0 comments on commit 99dbf3b

Please sign in to comment.