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 28dd6fd commit ff27811Copy full SHA for ff27811
services/director-v2/src/simcore_service_director_v2/core/settings.py
@@ -63,11 +63,13 @@ class DirectorV0Settings(BaseApplicationSettings):
63
64
@cached_property
65
def endpoint(self) -> str:
66
- url: str = AnyHttpUrl.build(
67
- scheme="http",
68
- host=self.DIRECTOR_HOST,
69
- port=self.DIRECTOR_PORT,
70
- path=f"/{self.DIRECTOR_V0_VTAG}",
+ url: str = str(
+ AnyHttpUrl.build(
+ scheme='http',
+ host=self.DIRECTOR_HOST,
+ port=self.DIRECTOR_PORT,
71
+ path=f"/{self.DIRECTOR_V0_VTAG}",
72
+ )
73
)
74
return url
75
0 commit comments