From 20e0438124c3677fc3cfb4a81c4178c474e1df80 Mon Sep 17 00:00:00 2001 From: grallewellyn Date: Thu, 7 May 2026 12:12:39 -0700 Subject: [PATCH] updated error message --- api/endpoints/algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/endpoints/algorithm.py b/api/endpoints/algorithm.py index 0ef26dd2..5cfa55a7 100644 --- a/api/endpoints/algorithm.py +++ b/api/endpoints/algorithm.py @@ -308,7 +308,7 @@ def post(self): else: response_body["code"] = status.HTTP_500_INTERNAL_SERVER_ERROR response_body["message"] = "Please include repo URL in the request" - response_body["error"] = "Missing key repo_url in request: {}".format(req_data) + response_body["error"] = "Missing key repository_url in request: {}".format(req_data) return response_body, status.HTTP_500_INTERNAL_SERVER_ERROR # creating file whose contents are returned on ci build success