Browse Source

commit 1ed62136769bcdf89b0763532486d38d6554bcfc
Author: Devaraj Das <ddas@yahoo-inc.com>
Date: Thu Jul 1 11:11:09 2010 -0700

MAPREDUCE:1900 from https://issues.apache.org/jira/secure/attachment/12448509/fs-close-delta.patch

+++ b/YAHOO-CHANGES.txt
+ MAPREDUCE-1900. Fixes a FS leak that i missed in the earlier patch.
+ (ddas)
+


git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20-security-patches@1077565 13f79535-47bb-0310-9956-ffa450edef68

Owen O'Malley 14 years ago
parent
commit
8a742b5607
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/mapred/org/apache/hadoop/mapred/JobInProgress.java

+ 1 - 1
src/mapred/org/apache/hadoop/mapred/JobInProgress.java

@@ -3092,7 +3092,7 @@ public class JobInProgress {
 
     //close the user's FS
     try {
-      FileSystem.closeAllForUGI(userUGI);
+      fs.close();
     } catch (IOException ie) {
       LOG.warn("Ignoring exception " + StringUtils.stringifyException(ie) + 
           " while closing FileSystem for " + userUGI);