From 561985c5dbab3a752968c60b1a805dfcd68a99cc Mon Sep 17 00:00:00 2001 From: Mads Bisgaard <126242332+bisgaard-itis@users.noreply.github.com> Date: Tue, 10 Dec 2024 21:20:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20list=20jobs=20issue=20whic?= =?UTF-8?q?h=20occurred=20when=20upgrade=20api=20server=20dependencies=20(?= =?UTF-8?q?#6933)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/simcore_service_api_server/services/webserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/api-server/src/simcore_service_api_server/services/webserver.py b/services/api-server/src/simcore_service_api_server/services/webserver.py index 9301b5ce42c..da5c7d20ad8 100644 --- a/services/api-server/src/simcore_service_api_server/services/webserver.py +++ b/services/api-server/src/simcore_service_api_server/services/webserver.py @@ -351,7 +351,7 @@ async def get_projects_w_solver_page( show_hidden=True, # WARNING: better way to match jobs with projects (Next PR if this works fine!) # WARNING: search text has a limit that I needed to increase for the example! - search=urllib.parse.quote(solver_name, safe=""), + search=solver_name, ) async def get_projects_page(self, *, limit: int, offset: int):