Browse Source

HUE-58. Add atime field to the stat dictionary returned by hadoop.fs.stats and hadoop.fs.listdir_stats

Aaron T. Myers 15 years ago
parent
commit
8fa613351e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      desktop/libs/hadoop/src/hadoop/fs/hadoopfs.py

+ 1 - 0
desktop/libs/hadoop/src/hadoop/fs/hadoopfs.py

@@ -447,6 +447,7 @@ class HadoopFileSystem(object):
       'mode': mode,
       'user': stat.owner,
       'group': stat.group,
+      'atime': stat.atime
       }
 
   @staticmethod