saga-project / BigJob

SAGA-based Pilot-Job Implementation for Compute and Data
http://saga-project.github.com/BigJob/
Other
19 stars 8 forks source link

pilot working dir... #168

Open andre-merzky opened 10 years ago

andre-merzky commented 10 years ago
            # 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...

andre-merzky commented 10 years ago

I would love to get a reaction on this ticket...