File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
services/director-v2/src/simcore_service_director_v2 Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change 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
44From dask documentation any Data or function must follow the criteria to be
55usable in dask [http://distributed.dask.org/en/stable/limitations.html?highlight=cloudpickle#assumptions-on-functions-and-data]:
You can’t perform that action at this time.
0 commit comments