src/hg/utils/automation/SafePipe.pm 1.4

1.4 2009/03/10 18:35:37 mikep
these error files get too large for /tmp so put them in /data/tmp where the rest of the tmp files go
Index: src/hg/utils/automation/SafePipe.pm
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/utils/automation/SafePipe.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 4 -r1.3 -r1.4
--- src/hg/utils/automation/SafePipe.pm	5 Aug 2008 18:09:10 -0000	1.3
+++ src/hg/utils/automation/SafePipe.pm	10 Mar 2009 18:35:37 -0000	1.4
@@ -68,16 +68,16 @@
 
     my $stderrCreated = 0;
     my $stderrFile = $obj->{STDERR};
     if(!(defined($stderrFile))) {
-        $stderrFile = "/tmp/SafePipe$$.err";
+        $stderrFile = "/data/tmp/SafePipe$$.err";
         $stderrCreated = 1;
         unlink($stderrFile);
     }
     my $stdoutCreated = 0;
     my $stdoutFile = $obj->{STDOUT};
     if(!(defined($stdoutFile))) {
-        $stdoutFile = "/tmp/SafePipe$$.out";
+        $stdoutFile = "/data/tmp/SafePipe$$.out";
         $stdoutCreated = 1;
         unlink($stdoutFile);
     }