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

[geode] branch release/1.10.0 updated (a563bea -> 0489366)

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

onichols pushed a change to branch release/1.10.0
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from a563bea  fix compile error after merge
     new 7317874  Revert "Add 1.9.1 to Version list"
     new 0489366  Revert "Add 1.9.1 to Version list"

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 geode-core/src/main/java/org/apache/geode/internal/Version.java     | 6 ------
 .../geode/internal/cache/tier/sockets/CommandInitializer.java       | 1 -
 2 files changed, 7 deletions(-)


[geode] 02/02: Revert "Add 1.9.1 to Version list"

Posted by on...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch release/1.10.0
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 04893666590bac42039f69f45e4ad5242be79076
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Thu Aug 29 14:08:10 2019 -0700

    Revert "Add 1.9.1 to Version list"
    
    This reverts commit b6929f30dffc1e05b05713b02acf2ca164254a9b.
---
 geode-core/src/main/java/org/apache/geode/internal/Version.java | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/Version.java b/geode-core/src/main/java/org/apache/geode/internal/Version.java
index 4b88b1e..94bcc7f 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/Version.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/Version.java
@@ -263,12 +263,6 @@ public class Version implements Comparable<Version> {
   public static final Version GEODE_1_9_0 =
       new Version("GEODE", "1.9.0", (byte) 1, (byte) 9, (byte) 0, (byte) 0, GEODE_1_9_0_ORDINAL);
 
-  private static final byte GEODE_1_9_1_ORDINAL = 101;
-
-  @Immutable
-  public static final Version GEODE_1_9_1 =
-      new Version("GEODE", "1.9.1", (byte) 1, (byte) 9, (byte) 1, (byte) 0, GEODE_1_9_1_ORDINAL);
-
   private static final byte GEODE_1_10_0_ORDINAL = 105;
 
   @Immutable


[geode] 01/02: Revert "Add 1.9.1 to Version list"

Posted by on...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch release/1.10.0
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 73178745f448c683c5b0202ea6c99a271f54642d
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Thu Aug 29 14:07:53 2019 -0700

    Revert "Add 1.9.1 to Version list"
    
    This reverts commit a0b20b83b618ffa45316c8ad62d19072f75ebb06.
---
 .../org/apache/geode/internal/cache/tier/sockets/CommandInitializer.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/CommandInitializer.java b/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/CommandInitializer.java
index 69a33b4..16f007e 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/CommandInitializer.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/CommandInitializer.java
@@ -337,7 +337,6 @@ public class CommandInitializer {
         ExecuteRegionFunctionGeode18.getCommand());
     allCommands.put(Version.GEODE_1_8_0, geode18Commands);
     allCommands.put(Version.GEODE_1_9_0, geode18Commands);
-    allCommands.put(Version.GEODE_1_9_1, geode18Commands);
     allCommands.put(Version.GEODE_1_10_0, geode18Commands);
 
     return Collections.unmodifiableMap(allCommands);