1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/2be2b8e0e916/ changeset: r5278:2be2b8e0e916 user: natefoo date: 2011-03-29 14:18:49 summary: Use new_file_path as tempfile's tempdir, obviates the need for $TEMP in the environment. affected #: 1 file (56 bytes) --- a/lib/galaxy/config.py Mon Mar 28 15:27:14 2011 -0400 +++ b/lib/galaxy/config.py Tue Mar 29 08:18:49 2011 -0400 @@ -2,7 +2,7 @@ Universe configuration builder. """ -import sys, os +import sys, os, tempfile import logging, logging.config import ConfigParser from galaxy.util import string_as_bool @@ -39,6 +39,7 @@ # Where dataset files are stored self.file_path = resolve_path( kwargs.get( "file_path", "database/files" ), self.root ) self.new_file_path = resolve_path( kwargs.get( "new_file_path", "database/tmp" ), self.root ) + tempfile.tempdir = self.new_file_path self.openid_consumer_cache_path = resolve_path( kwargs.get( "openid_consumer_cache_path", "database/openid_consumer_cache" ), self.root ) self.cookie_path = kwargs.get( "cookie_path", "/" ) # web API 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.