Repository: geode Updated Branches: refs/heads/feature/GEODE-2681 ae8350bcb -> fdcd53e17
GEODE-728: Using the correct parameter in withArgs ServerRegionFunctionExecutor.withArgs was not using it's argument, it was just passing the (null) field named args to setArguments. Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/2d842cda Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/2d842cda Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/2d842cda Branch: refs/heads/feature/GEODE-2681 Commit: 2d842cda8767f7fbc9db9cc197a87e2bf354a42b Parents: b842c70 Author: Dan Smith <[email protected]> Authored: Thu Apr 20 10:45:55 2017 -0700 Committer: Ken Howe <[email protected]> Committed: Thu Apr 20 15:13:17 2017 -0700 ---------------------------------------------------------------------- .../geode/internal/cache/execute/ServerRegionFunctionExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/2d842cda/geode-core/src/main/java/org/apache/geode/internal/cache/execute/ServerRegionFunctionExecutor.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/execute/ServerRegionFunctionExecutor.java b/geode-core/src/main/java/org/apache/geode/internal/cache/execute/ServerRegionFunctionExecutor.java index 6543daf..3a20dc3 100755 --- a/geode-core/src/main/java/org/apache/geode/internal/cache/execute/ServerRegionFunctionExecutor.java +++ b/geode-core/src/main/java/org/apache/geode/internal/cache/execute/ServerRegionFunctionExecutor.java @@ -318,7 +318,7 @@ public class ServerRegionFunctionExecutor extends AbstractExecution { return new ServerRegionFunctionExecutor(this, args); } - public Execution withArgs(Object params) { + public Execution withArgs(Object args) { return setArguments(args); }
