You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2014/06/19 23:06:18 UTC

[07/23] git commit: update changelog for STORM-342

update changelog for STORM-342


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

Branch: refs/heads/security
Commit: 5299531739b6661a7ce8d3aafb486d6dde09bbf6
Parents: 405dabb
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Thu Jun 12 17:00:30 2014 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Thu Jun 12 17:00:30 2014 -0400

----------------------------------------------------------------------
 CHANGELOG.md                                                    | 5 ++---
 .../test/jvm/backtype/storm/utils/DisruptorQueueTest.java       | 1 -
 2 files changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/52995317/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee2eae5..2e5b079 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,6 @@
-## 0.9.3-incubating (unreleased)
- * STORM-338: Move towards idiomatic Clojure style 
-
 ## 0.9.2-incubating
+ * STORM-342: Contention in Disruptor Queue which may cause out of order or lost messages
+ * STORM-338: Move towards idiomatic Clojure style 
  * STORM-335: add drpc test for removing timed out requests from queue
  * STORM-69: Storm UI Visualizations for Topologies
  * STORM-297: Performance scaling with CPU

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/52995317/storm-core/test/jvm/backtype/storm/utils/DisruptorQueueTest.java
----------------------------------------------------------------------
diff --git a/storm-core/test/jvm/backtype/storm/utils/DisruptorQueueTest.java b/storm-core/test/jvm/backtype/storm/utils/DisruptorQueueTest.java
index 747d95c..653fd33 100644
--- a/storm-core/test/jvm/backtype/storm/utils/DisruptorQueueTest.java
+++ b/storm-core/test/jvm/backtype/storm/utils/DisruptorQueueTest.java
@@ -101,7 +101,6 @@ public class DisruptorQueueTest extends TestCase {
         }
         consumerThread.interrupt();
         consumerThread.join(TIMEOUT);
-        //consumerThread.stop();
     }
 
     private class Producer implements Runnable {