We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e2adef commit e7790c5Copy full SHA for e7790c5
src/codeflare_sdk/ray/cluster/cluster.py
@@ -72,6 +72,7 @@ def __init__(self, config: ClusterConfiguration):
72
request.
73
"""
74
self.config = config
75
+ self._job_submission_client = None
76
if self.config is None:
77
warnings.warn(
78
"Please provide a ClusterConfiguration to initialise the Cluster object"
@@ -80,7 +81,6 @@ def __init__(self, config: ClusterConfiguration):
80
81
else:
82
self.resource_yaml = self.create_resource()
83
- self._job_submission_client = None
84
if is_notebook():
85
cluster_up_down_buttons(self)
86
0 commit comments