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 2020/07/24 21:18:24 UTC

[geode] branch support/1.13 updated: GEODE-8331: allow GFSH to connect to other versions of cluster (#5375) (cherry picked from commit 0f16c0fe1b28a7f20d490b441a21ff942acd810b)

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

jinmeiliao pushed a commit to branch support/1.13
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.13 by this push:
     new 632ff1d  GEODE-8331: allow GFSH to connect to other versions of cluster (#5375) (cherry picked from commit 0f16c0fe1b28a7f20d490b441a21ff942acd810b)
632ff1d is described below

commit 632ff1d021fe1277046662d837a5c17bd01984f8
Author: Jinmei Liao <ji...@pivotal.io>
AuthorDate: Fri Jul 24 14:17:46 2020 -0700

    GEODE-8331: allow GFSH to connect to other versions of cluster (#5375)
    (cherry picked from commit 0f16c0fe1b28a7f20d490b441a21ff942acd810b)
    
    * add a missing import
---
 .../geode/management/internal/cli/remote/OnlineCommandProcessor.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-gfsh/src/main/java/org/apache/geode/management/internal/cli/remote/OnlineCommandProcessor.java b/geode-gfsh/src/main/java/org/apache/geode/management/internal/cli/remote/OnlineCommandProcessor.java
index fa975f8..6261209 100644
--- a/geode-gfsh/src/main/java/org/apache/geode/management/internal/cli/remote/OnlineCommandProcessor.java
+++ b/geode-gfsh/src/main/java/org/apache/geode/management/internal/cli/remote/OnlineCommandProcessor.java
@@ -27,6 +27,7 @@ import org.springframework.util.StringUtils;
 import org.apache.geode.annotations.VisibleForTesting;
 import org.apache.geode.cache.Cache;
 import org.apache.geode.cache.internal.CommandProcessor;
+import org.apache.geode.internal.GemFireVersion;
 import org.apache.geode.internal.cache.CacheService;
 import org.apache.geode.internal.cache.InternalCache;
 import org.apache.geode.internal.security.SecurityService;