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

Workaround for Kerberos bug in slurm sbatch --parsable (solves #148) #149

Merged
merged 3 commits into from
Jul 24, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ This package formerly included WrapSpawner and ProfilesSpawner, which provide me
2. add lines in jupyterhub_config.py for the spawner you intend to use, e.g.

```python
import batchspawner

c = get_config()
c.JupyterHub.spawner_class = 'batchspawner.TorqueSpawner'
```
Expand Down
2 changes: 2 additions & 0 deletions batchspawner/batchspawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,8 @@ class SlurmSpawner(UserEnvMixin,BatchSpawnerRegexStates):
def parse_job_id(self, output):
# make sure jobid is really a number
try:
# use only last line to circumvent slurm bug
output = output.splitlines()[-1]
id = output.split(';')[0]
int(id)
except Exception as e:
Expand Down