Github user itaifrenkel commented on a diff in the pull request:

    https://github.com/apache/storm/pull/286#discussion_r18741189
  
    --- Diff: storm-core/src/dev/resources/storm.js ---
    @@ -243,6 +243,12 @@ BasicBolt.prototype.__emit = function(commandDetails) {
     BasicBolt.prototype.handleNewCommand = function(command) {
         var self = this;
         var tup = new Tuple(command["id"], command["comp"], command["stream"], 
command["task"], command["tuple"]);
    +
    +    if (tup.task == -1 && tup.stream == "__heartbeat") {
    +        self.sync();
    +        return;
    +    }
    +
         var callback = function(err) {
               if (err) {
    --- End diff --
    
    storm.py , storm.rb, and storm.js are comitted three times. Each change 
needs to be modified in all three files. (Yeay - I know ....)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to