We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a0b54 commit 69dda7dCopy full SHA for 69dda7d
nemo_run/run/torchx_backend/schedulers/docker.py
@@ -181,11 +181,9 @@ def describe(self, app_id: str) -> Optional[DescribeAppResponse]:
181
state = next(state for state in states if not is_terminal(state))
182
else:
183
status_file = os.path.join(req.executor.job_dir, f"status_{role}.out")
184
- print(f"status_file: {status_file}")
185
if os.path.exists(status_file):
186
with open(status_file, "r") as f:
187
status = json.load(f)
188
- print(status)
189
roles_statuses[role].replicas.append(
190
ReplicaStatus(
191
id=0, role=role, state=int(status["exit_code"]), hostname=container.name
0 commit comments