This is an automated email from the ASF dual-hosted git repository.
jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git
The following commit(s) were added to refs/heads/develop by this push:
new a2e1f10 GEODE-3453: Fix native client function tests to use updated
API
a2e1f10 is described below
commit a2e1f102b0ac743b929f826147b34a7bcde3f97e
Author: David Kimura <[email protected]>
AuthorDate: Wed Aug 16 17:35:33 2017 -0700
GEODE-3453: Fix native client function tests to use updated API
---
tests/javaobject/GetFunctionExeHA.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/javaobject/GetFunctionExeHA.java
b/tests/javaobject/GetFunctionExeHA.java
index 62216c0..ece5f33 100644
--- a/tests/javaobject/GetFunctionExeHA.java
+++ b/tests/javaobject/GetFunctionExeHA.java
@@ -35,7 +35,7 @@ public class GetFunctionExeHA extends FunctionAdapter
implements Declarable{
RegionFunctionContext context = (RegionFunctionContext)fc;
System.out.println("Data set :: " + context.getDataSet());
Region region = PartitionRegionHelper.getLocalDataForContext(context);
- Set keys = region.keys();
+ Set keys = region.keySet();
Iterator itr = keys.iterator();
ResultSender sender = context.getResultSender();
Object k = null;
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].