You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2018/03/26 17:37:30 UTC

[geode] 05/19: GEODE-1279: Fix serialization of LocalVM

This is an automated email from the ASF dual-hosted git repository.

klund pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 020291f093d553569298ab1abe833a08b955d952
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Wed Mar 21 13:27:39 2018 -0700

    GEODE-1279: Fix serialization of LocalVM
---
 geode-core/src/test/java/org/apache/geode/test/dunit/LocalVM.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/geode-core/src/test/java/org/apache/geode/test/dunit/LocalVM.java b/geode-core/src/test/java/org/apache/geode/test/dunit/LocalVM.java
index 385df4d..540270e 100644
--- a/geode-core/src/test/java/org/apache/geode/test/dunit/LocalVM.java
+++ b/geode-core/src/test/java/org/apache/geode/test/dunit/LocalVM.java
@@ -15,6 +15,7 @@
 
 package org.apache.geode.test.dunit;
 
+import java.io.Serializable;
 import java.rmi.RemoteException;
 
 import hydra.MethExecutor;
@@ -62,7 +63,7 @@ public class LocalVM extends VM {
     throw new UnsupportedOperationException("Not supported by LocalVM");
   }
 
-  protected static class LocalDUnitVMIF implements RemoteDUnitVMIF {
+  protected static class LocalDUnitVMIF implements RemoteDUnitVMIF, Serializable {
 
     @Override
     public MethExecutorResult executeMethodOnObject(final Object target, final String methodName)

-- 
To stop receiving notification emails like this one, please contact
klund@apache.org.