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

    https://github.com/apache/storm/pull/1316#discussion_r58954552
  
    --- Diff: storm-core/src/clj/backtype/storm/daemon/executor.clj ---
    @@ -431,13 +431,14 @@
           (fn [tuple-batch sequence-id end-of-batch?]
             (fast-list-iter [[task-id msg] tuple-batch]
               (let [^TupleImpl tuple (if (instance? Tuple msg) msg 
(.deserialize deserializer msg))]
    -            (when debug? (log-message "Processing received message FOR " 
task-id " TUPLE: " tuple))
    -            (if task-id
    -              (tuple-action-fn task-id tuple)
    -              ;; null task ids are broadcast tuples
    -              (fast-list-iter [task-id task-ids]
    +            (if tuple
    +              ((when debug? (log-message "Processing received message FOR 
" task-id " TUPLE: " tuple))
    +              (if task-id
                     (tuple-action-fn task-id tuple)
    -                ))
    +                ;; null task ids are broadcast tuples
    +                (fast-list-iter [task-id task-ids]
    +                  (tuple-action-fn task-id tuple)
    +                  ))))
    --- End diff --
    
    Lots of parenthetical and formatting problems here.


---
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