Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Jan 20, 2025
1 parent 3a60370 commit a848ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app_runner/src/app_runner/bfabric_app/submitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run(self) -> None:
workunit_wrapper_data = self.get_workunit_wrapper_data()
submitter_ref: SubmitterRef = workunit_wrapper_data.app_version.submitter
submitter_name = submitter_ref.name
submitter_spec = self._submitters_spec.get(submitter_name)
submitter_spec = self._submitters_spec.submitters.get(submitter_name)
if submitter_spec is None:
raise ValueError(f"Submitter '{submitter_name}' not found in submitters spec.")
if submitter_spec.type != "slurm":
Expand Down

0 comments on commit a848ec7

Please sign in to comment.