You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ji...@apache.org on 2016/04/29 21:23:16 UTC

[06/50] [abbrv] incubator-geode git commit: Fix serialization bug

Fix serialization bug


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/c0651a41
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/c0651a41
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/c0651a41

Branch: refs/heads/develop
Commit: c0651a411a76c5146c7290bd7160c38c9e938ab2
Parents: 794708e
Author: Kirk Lund <kl...@apache.org>
Authored: Tue Apr 12 16:16:16 2016 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Tue Apr 12 16:16:16 2016 -0700

----------------------------------------------------------------------
 .../main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/c0651a41/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
----------------------------------------------------------------------
diff --git a/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java b/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
index 8535fa5..7955d97 100755
--- a/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
+++ b/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
@@ -79,7 +79,7 @@ public class RetryRule implements TestRule, Serializable {
     return this.implementation.apply(base, description);
   }
 
-  protected abstract class AbstractRetryRule implements TestRule {
+  protected abstract class AbstractRetryRule implements TestRule, Serializable {
     protected AbstractRetryRule() {
     }
     protected void evaluate(final Statement base, final Description description, final int retryCount) throws Throwable {