You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# if no working dir is set assume use home directory
# will fail if home directory is not the same on remote machine
# but this is just a guess to avoid failing
self.working_directory = "~"
#self.working_directory = ""
This guess is not avoiding failing. /tmp/%s % uuid.uuid would avoid failing. Or /tmp/bigjob-%s % getpass.getuser()` has some chance of avoiding failing. THe above breaks way too often to be useful -- and gives an error message which is hard to understand...
The text was updated successfully, but these errors were encountered:
This guess is not avoiding failing.
/tmp/%s
% uuid.uuid would avoid failing. Or/tmp/bigjob-%s
% getpass.getuser()` has some chance of avoiding failing. THe above breaks way too often to be useful -- and gives an error message which is hard to understand...The text was updated successfully, but these errors were encountered: