You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by zh...@apache.org on 2017/11/29 05:23:11 UTC

[geode] branch feature/GEODE-4000 updated (27e6dca -> 2fb03ca)

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

zhouxj pushed a change to branch feature/GEODE-4000
in repository https://gitbox.apache.org/repos/asf/geode.git.


    omit 27e6dca  GEODE-4000: The serializerClass is actually introduced in 1.4 not 1.3.
     add 375a8f6  GEODE-3242 Update docs with new --serializer option for (#1090)
     add df0a856  GEODE-3539: add ability to stop a vm without clean out the working dir (#1094)
     add e057702  GEODE-3788: add alter async-event-queue command and tests
     new 2fb03ca  GEODE-4000: The serializerClass is actually introduced in 1.4 not 1.3.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (27e6dca)
            \
             N -- N -- N   refs/heads/feature/GEODE-4000 (2fb03ca)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .../internal/ClusterConfigurationService.java      |  12 +-
 .../cli/commands/AlterAsyncEventQueueCommand.java  | 168 +++++++++++++++
 .../ExportImportClusterConfigurationCommands.java  |   4 +-
 .../management/internal/cli/json/GfJsonObject.java |   3 +
 .../internal/cli/result/TabularResultData.java     |  18 ++
 .../AlterAsyncEventQueueCommandDUnitTest.java      | 100 +++++++++
 .../commands/AlterAsyncEventQueueCommandTest.java  | 239 +++++++++++++++++++++
 .../TabularResultDataTest.java}                    |  41 ++--
 .../internal/configuration/ClusterConfig.java      |   2 +-
 .../ImportClusterConfigDistributedTest.java        |   4 +-
 .../test/dunit/rules/LocatorServerStartupRule.java |   6 +-
 .../apache/geode/test/dunit/rules/MemberVM.java    |   6 +-
 .../gfsh/command-pages/create.html.md.erb          |   3 +-
 .../tools_modules/lucene_integration.html.md.erb   |   2 +-
 14 files changed, 571 insertions(+), 37 deletions(-)
 create mode 100644 geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/AlterAsyncEventQueueCommand.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/AlterAsyncEventQueueCommandDUnitTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/AlterAsyncEventQueueCommandTest.java
 copy geode-core/src/test/java/org/apache/geode/management/internal/cli/{converters/LogLevelConverterTest.java => result/TabularResultDataTest.java} (59%)

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].

[geode] 01/01: GEODE-4000: The serializerClass is actually introduced in 1.4 not 1.3.

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

zhouxj pushed a commit to branch feature/GEODE-4000
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 2fb03cacad50d83e8a80db576b40b94160e06737
Author: zhouxh <gz...@pivotal.io>
AuthorDate: Tue Nov 28 14:11:10 2017 -0800

    GEODE-4000: The serializerClass is actually introduced in 1.4 not 1.3.
---
 .../cache/lucene/internal/LuceneIndexCreationProfile.java      | 10 +++++-----
 geode-old-versions/build.gradle                                |  1 +
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexCreationProfile.java b/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexCreationProfile.java
index 9a61048..6100634 100644
--- a/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexCreationProfile.java
+++ b/geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneIndexCreationProfile.java
@@ -165,11 +165,11 @@ public class LuceneIndexCreationProfile implements CacheServiceProfile, Versione
 
   @Override
   public void toData(DataOutput out) throws IOException {
-    toDataPre_GEODE_1_3_0_0(out);
+    toDataPre_GEODE_1_4_0_0(out);
     DataSerializer.writeString(this.serializerClass, out);
   }
 
-  public void toDataPre_GEODE_1_3_0_0(DataOutput out) throws IOException {
+  public void toDataPre_GEODE_1_4_0_0(DataOutput out) throws IOException {
     DataSerializer.writeString(this.indexName, out);
     DataSerializer.writeString(this.regionPath, out);
     DataSerializer.writeStringArray(this.fieldNames, out);
@@ -179,11 +179,11 @@ public class LuceneIndexCreationProfile implements CacheServiceProfile, Versione
 
   @Override
   public void fromData(DataInput in) throws IOException, ClassNotFoundException {
-    fromDataPre_GEODE_1_3_0_0(in);
+    fromDataPre_GEODE_1_4_0_0(in);
     this.serializerClass = DataSerializer.readString(in);
   }
 
-  public void fromDataPre_GEODE_1_3_0_0(DataInput in) throws IOException, ClassNotFoundException {
+  public void fromDataPre_GEODE_1_4_0_0(DataInput in) throws IOException, ClassNotFoundException {
     this.indexName = DataSerializer.readString(in);
     this.regionPath = DataSerializer.readString(in);
     this.fieldNames = DataSerializer.readStringArray(in);
@@ -205,6 +205,6 @@ public class LuceneIndexCreationProfile implements CacheServiceProfile, Versione
 
   @Override
   public Version[] getSerializationVersions() {
-    return new Version[] {Version.GEODE_130};
+    return new Version[] {Version.GEODE_140};
   }
 }
diff --git a/geode-old-versions/build.gradle b/geode-old-versions/build.gradle
index 886f240..55caac5 100644
--- a/geode-old-versions/build.gradle
+++ b/geode-old-versions/build.gradle
@@ -89,6 +89,7 @@ task createGeodeClasspathsFile  {
   addOldVersion('test110', '1.1.0', false)
   addOldVersion('test111', '1.1.1', false)
   addOldVersion('test120', '1.2.0', true)
+  addOldVersion('test130', '1.3.0', true)
 }
 
 

-- 
To stop receiving notification emails like this one, please contact
"commits@geode.apache.org" <co...@geode.apache.org>.