Skip to content

Commit 7320d64

Browse files
committed
removed settings for dask-gateway
1 parent 5307d9b commit 7320d64

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

services/director-v2/src/simcore_service_director_v2/core/settings.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,12 @@ class ComputationalBackendSettings(BaseCustomSettings):
8585
...,
8686
description="This is the cluster that will be used by default"
8787
" when submitting computational services (typically "
88-
"tcp://dask-scheduler:8786, tls://dask-scheduler:8786 for the internal cluster, or "
89-
"http(s)/GATEWAY_IP:8000 for a osparc-dask-gateway)",
88+
"tcp://dask-scheduler:8786, tls://dask-scheduler:8786 for the internal cluster",
9089
)
9190
COMPUTATIONAL_BACKEND_DEFAULT_CLUSTER_AUTH: ClusterAuthentication = Field(
92-
...,
93-
description="Empty for the internal cluster, must be one "
94-
"of simple/kerberos/jupyterhub for the osparc-dask-gateway",
91+
default_factory=NoAuthentication,
92+
deprecated=True,
93+
description="Deprecated: must be empty",
9594
)
9695
COMPUTATIONAL_BACKEND_DEFAULT_CLUSTER_FILE_LINK_TYPE: FileLinkType = Field(
9796
FileLinkType.S3,

services/director-v2/src/simcore_service_director_v2/modules/dask_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""The dask client is the osparc part that communicates with a
2-
dask-scheduler/worker backend directly or through a dask-gateway.
2+
dask-scheduler/worker backend.
33
44
From dask documentation any Data or function must follow the criteria to be
55
usable in dask [http://distributed.dask.org/en/stable/limitations.html?highlight=cloudpickle#assumptions-on-functions-and-data]:

0 commit comments

Comments
 (0)