Really minor thing but the type of the coiled.Cluster is in fact a ClusterBeta which is also printed like that when using str/repr
In [1]: from coiled import Cluster
In [2]: Cluster.__mro__
Out[2]:
(coiled._beta.cluster.ClusterBeta,
coiled.cluster.Cluster,
distributed.deploy.cluster.Cluster,
distributed.utils.SyncMethodMixin,
typing.Generic,
object)
In [3]: repr(Cluster)
Out[3]: "<class 'coiled._beta.cluster.ClusterBeta'>"
I think this is a remnant of the v2 rollout. I think it would be a nicer UX if the beta was not there since this is our actual production API, isn't it?
Really minor thing but the type of the
coiled.Cluster
is in fact aClusterBeta
which is also printed like that when using str/reprI think this is a remnant of the v2 rollout. I think it would be a nicer UX if the beta was not there since this is our actual production API, isn't it?