We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb37f16 commit 9ebba79Copy full SHA for 9ebba79
services/director/src/simcore_service_director/registry_proxy.py
@@ -68,7 +68,9 @@ async def _basic_auth_registry_request(
68
else None
69
)
70
71
- request_url = URL(f"{app_settings.DIRECTOR_REGISTRY.registry_url}").with_path(path)
+ request_url = URL(f"{app_settings.DIRECTOR_REGISTRY.registry_url}").with_path(
72
+ path, encoded=True
73
+ )
74
75
session = get_client_session(app)
76
response = await session.request(
0 commit comments