commit/galaxy-central: dannon: Force an absolute path for the temp directory in the local runner
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/3534f67acd2a/ Changeset: 3534f67acd2a Branch: stable User: dannon Date: 2014-05-07 15:45:53 Summary: Force an absolute path for the temp directory in the local runner Affected #: 1 file diff -r 61b4a993d39c5341afea857859221a4f5b94334f -r 3534f67acd2a4f84899335326ac2cc8bcf05201d lib/galaxy/jobs/runners/local.py --- a/lib/galaxy/jobs/runners/local.py +++ b/lib/galaxy/jobs/runners/local.py @@ -39,7 +39,7 @@ #Set TEMP if a valid temp value is not already set if not ( 'TMPDIR' in self._environ or 'TEMP' in self._environ or 'TMP' in self._environ ): - self._environ[ 'TEMP' ] = tempfile.gettempdir() + self._environ[ 'TEMP' ] = os.path.abspath(tempfile.gettempdir()) super( LocalJobRunner, self ).__init__( app, nworkers ) self._init_worker_threads() Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org