We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5dc19c8 + 66c6560 commit 06984a8Copy full SHA for 06984a8
launcher_scripts/nemo_launcher/core/launchers.py
@@ -266,14 +266,9 @@ def _submit_command(self, submission_file_path: Path) -> str:
266
"""Launch the submission command"""
267
command_list = self._make_submission_command(submission_file_path)
268
# run
269
- output = job_utils.CommandFunction(
270
- command_list, verbose=False
271
- )() # explicit errors
+ job_utils.CommandFunction(command_list, verbose=False)() # explicit errors
272
273
- job_id = ""
274
- if output:
275
- job_id = self._get_job_id_from_submission_command(output)
276
- return job_id
+ return ""
277
278
@staticmethod
279
def _make_submission_command(submission_file_path: Path) -> List[str]:
0 commit comments