Skip to content

Commit

Permalink
[SwanSpawner] Fix local home path
Browse files Browse the repository at this point in the history
The alma9 image uses /home/user and not /scratch/user anymore.
  • Loading branch information
etejedor committed Sep 2, 2024
1 parent b734732 commit 386f4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SwanSpawner/swanspawner/swanspawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def get_env(self):

username = self.user.name
if self.local_home:
homepath = "/scratch/%s" %(username)
homepath = "/home/%s" %(username)
else:
homepath = self.eos_path_format.format(username = username)

Expand Down

0 comments on commit 386f4b9

Please sign in to comment.