You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2017/02/08 21:26:38 UTC

[1/3] storm git commit: STORM-2350: Storm-HDFS's listFilesByModificationTime is broken

Repository: storm
Updated Branches:
  refs/heads/1.0.x-branch d4468cb6f -> cc8b5f88b


STORM-2350: Storm-HDFS's listFilesByModificationTime is broken


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/de70903d
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/de70903d
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/de70903d

Branch: refs/heads/1.0.x-branch
Commit: de70903dde47756e81859f6fe0a1b2e5190b9b1b
Parents: a4e20fa
Author: Tibor Kiss <ti...@gmail.com>
Authored: Tue Feb 7 06:11:32 2017 +0100
Committer: Tibor Kiss <ti...@gmail.com>
Committed: Tue Feb 7 06:11:32 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/storm/hdfs/common/ModifTimeComparator.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/de70903d/external/storm-hdfs/src/main/java/org/apache/storm/hdfs/common/ModifTimeComparator.java
----------------------------------------------------------------------
diff --git a/external/storm-hdfs/src/main/java/org/apache/storm/hdfs/common/ModifTimeComparator.java b/external/storm-hdfs/src/main/java/org/apache/storm/hdfs/common/ModifTimeComparator.java
index de5613e..0558b3f 100644
--- a/external/storm-hdfs/src/main/java/org/apache/storm/hdfs/common/ModifTimeComparator.java
+++ b/external/storm-hdfs/src/main/java/org/apache/storm/hdfs/common/ModifTimeComparator.java
@@ -27,6 +27,6 @@ public class ModifTimeComparator
         implements Comparator<FileStatus> {
    @Override
     public int compare(FileStatus o1, FileStatus o2) {
-      return new Long(o1.getModificationTime()).compareTo( o1.getModificationTime() );
+      return new Long(o1.getModificationTime()).compareTo( o2.getModificationTime() );
     }
 }


[2/3] storm git commit: Merge branch 'STORM-2350' of github.com:tibkiss/storm into 1.0.x-branch

Posted by pt...@apache.org.
Merge branch 'STORM-2350' of github.com:tibkiss/storm into 1.0.x-branch


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/91baab2b
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/91baab2b
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/91baab2b

Branch: refs/heads/1.0.x-branch
Commit: 91baab2b65817481436366b49ad3da252d8955bc
Parents: d4468cb de70903
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Feb 8 16:25:25 2017 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Feb 8 16:25:25 2017 -0500

----------------------------------------------------------------------
 .../java/org/apache/storm/hdfs/common/ModifTimeComparator.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[3/3] storm git commit: add STORM-2350 to changelog

Posted by pt...@apache.org.
add STORM-2350 to changelog


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/cc8b5f88
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/cc8b5f88
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/cc8b5f88

Branch: refs/heads/1.0.x-branch
Commit: cc8b5f88b52e4214e2d596292eeeed0f8096d60c
Parents: 91baab2
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Feb 8 16:26:22 2017 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Feb 8 16:26:22 2017 -0500

----------------------------------------------------------------------
 CHANGELOG.md | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/cc8b5f88/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 50878fa..f58ed36 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+## 1.0.4
+ * STORM-2350: Storm-HDFS's listFilesByModificationTime is broken
+
 ## 1.0.3
  * STORM-2197: NimbusClient connectins leak due to leakage in ThriftClient
  * STORM-2321: Handle blobstore zk key deletion in KeySequenceNumber.