Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check that there is no space in the name #258

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions adaptive_scheduler/_server_support/slurm_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ def slurm_run(
RunManager

"""
if " " in name:
msg = "The name should not contain spaces."
raise ValueError(msg)
if partition is None:
partitions = slurm_partitions()
assert isinstance(partitions, dict)
Expand Down
Loading