|
@@ -168,7 +168,8 @@ public class KosmosFileSystem extends FileSystem {
|
|
}
|
|
}
|
|
if (kfsImpl.isDirectory(srep)) {
|
|
if (kfsImpl.isDirectory(srep)) {
|
|
// System.out.println("Status of path: " + path + " is dir");
|
|
// System.out.println("Status of path: " + path + " is dir");
|
|
- return new FileStatus(0, true, 1, 0, 0, path.makeQualified(this));
|
|
|
|
|
|
+ return new FileStatus(0, true, 1, 0, kfsImpl.getModificationTime(srep),
|
|
|
|
+ path.makeQualified(this));
|
|
} else {
|
|
} else {
|
|
// System.out.println("Status of path: " + path + " is file");
|
|
// System.out.println("Status of path: " + path + " is file");
|
|
return new FileStatus(kfsImpl.filesize(srep), false,
|
|
return new FileStatus(kfsImpl.filesize(srep), false,
|