From c5bf8b2ffae1fa319ee23473eae90b9eac8d4212 Mon Sep 17 00:00:00 2001 From: Flora Thiebaut Date: Fri, 7 Feb 2025 14:37:05 +0000 Subject: [PATCH] fix blueprint --- components/renku_data_services/session/blueprints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/renku_data_services/session/blueprints.py b/components/renku_data_services/session/blueprints.py index 180d3e382..3df44357d 100644 --- a/components/renku_data_services/session/blueprints.py +++ b/components/renku_data_services/session/blueprints.py @@ -200,7 +200,7 @@ def get_environment_builds(self) -> BlueprintFactoryResponse: """Get all container image builds belonging to a session environment.""" @authenticate(self.authenticator) - async def _get_environment_builds(_: Request, user: base_models.APIUser, project_id: ULID) -> JSONResponse: + async def _get_environment_builds(_: Request, user: base_models.APIUser, environment_id: ULID) -> JSONResponse: raise errors.ProgrammingError(message="Not implemented") return "/environments//builds", ["GET"], _get_environment_builds