Skip to content

Commit 394f48e

Browse files
nullable
1 parent 866bde0 commit 394f48e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,12 +477,12 @@ def get_proxy_endpoint(self) -> AnyHttpUrl:
477477
] = None
478478

479479
product_api_base_url: Annotated[
480-
str,
480+
str | None,
481481
BeforeValidator(lambda v: f"{AnyHttpUrl(v)}"),
482482
Field(
483483
description="Base URL for the current product's API.",
484484
),
485-
]
485+
] = None
486486

487487
@classmethod
488488
def from_http_request(

0 commit comments

Comments
 (0)