From 19e48161d27c29c6633ef7f8af4719dabf2dc99f Mon Sep 17 00:00:00 2001 From: Bruce Schultz Date: Mon, 25 Mar 2024 11:37:48 +0100 Subject: [PATCH] fix(results): fix status code build_image --- gateway/routers/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/routers/results.py b/gateway/routers/results.py index f8345e1..498fc19 100644 --- a/gateway/routers/results.py +++ b/gateway/routers/results.py @@ -53,7 +53,7 @@ async def upload_to_scratch( @route( request_method=results_router.put, path="/upload", - status_code=status.HTTP_204_NO_CONTENT, + status_code=status.HTTP_200_OK, service_url=gateway_settings.RESULTS_SERVICE_URL, response_model=ResultsUploadResponse, file_params=["file"],