You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by da...@apache.org on 2014/07/24 23:39:04 UTC

[1/2] git commit: missed out a pair of quotes

Repository: incubator-storm
Updated Branches:
  refs/heads/master 07a561aee -> 3c55b103d


missed out a pair of quotes

line 90: attempt to read item 'directTask' from kwargs


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

Branch: refs/heads/master
Commit: 498d8b22262a7706ec25097d745f1f6c63c9cb35
Parents: 07a561a
Author: averykhoo <av...@gmail.com>
Authored: Fri Jul 11 15:25:26 2014 +0800
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Thu Jul 24 16:37:54 2014 -0500

----------------------------------------------------------------------
 examples/storm-starter/multilang/resources/storm.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/498d8b22/examples/storm-starter/multilang/resources/storm.py
----------------------------------------------------------------------
diff --git a/examples/storm-starter/multilang/resources/storm.py b/examples/storm-starter/multilang/resources/storm.py
index 4bc9e82..fdf7751 100644
--- a/examples/storm-starter/multilang/resources/storm.py
+++ b/examples/storm-starter/multilang/resources/storm.py
@@ -87,7 +87,7 @@ def emit(*args, **kwargs):
     return readTaskIds()
 
 def emitDirect(task, *args, **kwargs):
-    kwargs[directTask] = task
+    kwargs['directTask'] = task
     __emit(*args, **kwargs)
 
 def __emit(*args, **kwargs):


[2/2] git commit: update CHANGELOG and contributors list for STORM-420

Posted by da...@apache.org.
update CHANGELOG and contributors list for STORM-420


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

Branch: refs/heads/master
Commit: 3c55b103d3703fbf825a8d03bd426e4a37538b6a
Parents: 498d8b2
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Thu Jul 24 16:33:54 2014 -0500
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Thu Jul 24 16:38:10 2014 -0500

----------------------------------------------------------------------
 CHANGELOG.md    | 1 +
 README.markdown | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/3c55b103/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a3a564e..f78dd62 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,7 @@
  * STORM-403: heartbeats-to-nimbus in supervisor-test failed due to uninten...
  * STORM-402: FileNotFoundException when using storm with apache tika
  * STORM-364: The exception time display as default timezone.
+ * STORM-420: Missing quotes in storm-starter python code
 
 ## 0.9.2-incubating
  * STORM-66: send taskid on initial handshake

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/3c55b103/README.markdown
----------------------------------------------------------------------
diff --git a/README.markdown b/README.markdown
index 2a6afbf..f5d7873 100644
--- a/README.markdown
+++ b/README.markdown
@@ -157,6 +157,7 @@ under the License.
 * Ryan Liu ([@shell0dh](https://github.com/shell0dh))
 * Dave Parfitt ([@metadave](https://github.com/metadave))
 * Jo Liss ([@joliss](https://github.com/joliss))
+* averykhoo ([@averykhoo](https://github.com/averykhoo))
 
 ## Acknowledgements