Github user kirklund commented on a diff in the pull request: https://github.com/apache/geode/pull/491#discussion_r114672970 --- Diff: geode-core/src/main/java/org/apache/geode/internal/cache/execute/PartitionedRegionFunctionResultSender.java --- @@ -214,16 +214,15 @@ public void lastResult(Object oneResult) { private synchronized void lastResult(Object oneResult, ResultCollector collector, boolean lastRemoteResult, boolean lastLocalResult, DistributedMember memberID) { + + boolean completedLocal = lastLocalResult | this.localLastResultRecieved; --- End diff -- Did you mean to use the bitwise inclusive OR instead of "||"?
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---