Skip to content

Commit 5c7fc53

Browse files
author
Andrei Neagu
committed
Merge branch 'pr-osparc-pydantic2-integration-libraries2' of github.com:GitHK/osparc-simcore-forked into pr-osparc-pydantic2-integration-libraries2
2 parents 88d43e4 + 4b8dc22 commit 5c7fc53

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

services/director-v2/src/simcore_service_director_v2/models/dynamic_services_scheduler.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,9 @@ class SchedulerData(CommonServiceDetails, DynamicSidecarServiceLabels):
391391
@property
392392
def endpoint(self) -> AnyHttpUrl:
393393
"""endpoint where all the services are exposed"""
394-
url = AnyHttpUrl.build( # pylint: disable=no-member
394+
return AnyHttpUrl.build( # pylint: disable=no-member
395395
scheme="http", host=self.hostname, port=self.port
396396
)
397-
return url
398397

399398
dynamic_sidecar: DynamicSidecar = Field(
400399
...,

0 commit comments

Comments
 (0)