Skip to content
Snippets Groups Projects

found an error causing build problems.

Merged Charlotte Hausman requested to merge fix-error into 2.8.4-DEVELOPMENT
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -45,8 +45,9 @@ def get_healthcheck(request: Request) -> Response:
:param request: GET request
:return:
"""
# for some reason the status has to be an int or the healthcheck fails...
return Response(
status=http.HTTPStatus.OK.name, json_body={"healthcheck": f"Capability service returned {http.HTTPStatus.OK}"}
status=http.HTTPStatus.OK.value, json_body={"healthcheck": f"Capability service returned {http.HTTPStatus.OK}"}
)
Loading