[geode] branch develop updated: GEODE-5342: Fix disk-store validation in commands (#2881)

2018-11-30 Thread jjramos
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new 0a628c9  GEODE-5342: Fix disk-store validation in commands (#2881)
0a628c9 is described below

commit 0a628c99aac960b6b420d62c26e675ba68aba752
Author: Juan José Ramos 
AuthorDate: Fri Nov 30 10:52:26 2018 +

GEODE-5342: Fix disk-store validation in commands (#2881)

- Fixed minor warnings.
- Replaced the usage of `junit.Assert` by `assertj`.
- Offline gfsh comamnds related to disk-stores avoid creating the
  disk-store's folder if it doesn't exist already.
---
 .../cli/commands/DiskStoreCommandsDUnitTest.java   | 107 
 ...t.java => DiskStoreFactoryIntegrationTest.java} | 304 +++--
 .../AlterDiskStoreCommandIntegrationTest.java} |  11 +-
 .../cli/commands/AlterOfflineDiskStoreCommand.java |  11 +-
 .../commands/CompactOfflineDiskStoreCommand.java   |  19 +-
 .../commands/DescribeOfflineDiskStoreCommand.java  |  10 +-
 .../commands/UpgradeOfflineDiskStoreCommand.java   |  17 +-
 .../cli/commands/ValidateDiskStoreCommand.java |  10 +-
 8 files changed, 261 insertions(+), 228 deletions(-)

diff --git 
a/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/DiskStoreCommandsDUnitTest.java
 
b/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/DiskStoreCommandsDUnitTest.java
index eaed28a..7a2e855 100644
--- 
a/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/DiskStoreCommandsDUnitTest.java
+++ 
b/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/DiskStoreCommandsDUnitTest.java
@@ -18,6 +18,9 @@ package org.apache.geode.management.internal.cli.commands;
 import static org.assertj.core.api.Assertions.assertThat;
 
 import java.io.File;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
@@ -25,10 +28,13 @@ import java.util.Properties;
 import java.util.stream.Collectors;
 import java.util.stream.IntStream;
 
+import junitparams.JUnitParamsRunner;
+import junitparams.Parameters;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.junit.rules.TemporaryFolder;
+import org.junit.runner.RunWith;
 
 import org.apache.geode.cache.Cache;
 import org.apache.geode.cache.Region;
@@ -41,18 +47,19 @@ import org.apache.geode.internal.cache.InternalCache;
 import org.apache.geode.internal.cache.SnapshotTestUtil;
 import org.apache.geode.management.cli.Result;
 import org.apache.geode.management.internal.cli.result.CommandResult;
+import org.apache.geode.test.dunit.SerializableRunnableIF;
 import org.apache.geode.test.dunit.rules.ClusterStartupRule;
 import org.apache.geode.test.dunit.rules.MemberVM;
 import org.apache.geode.test.junit.categories.PersistenceTest;
 import org.apache.geode.test.junit.rules.GfshCommandRule;
 import org.apache.geode.test.junit.rules.ServerStarterRule;
 
-@Category({PersistenceTest.class})
+@Category(PersistenceTest.class)
+@RunWith(JUnitParamsRunner.class)
 public class DiskStoreCommandsDUnitTest {
-
+  private static final String GROUP = "GROUP1";
   private static final String REGION_1 = "REGION1";
   private static final String DISKSTORE = "DISKSTORE";
-  private static final String GROUP = "GROUP1";
 
   @Rule
   public ClusterStartupRule rule = new ClusterStartupRule();
@@ -80,6 +87,15 @@ public class DiskStoreCommandsDUnitTest {
 REGION_1, DISKSTORE, GROUP)).statusIsSuccess();
   }
 
+  private static SerializableRunnableIF dataProducer() {
+return () -> {
+  Cache cache = ClusterStartupRule.getCache();
+  assertThat(cache).isNotNull();
+  Region r = cache.getRegion(REGION_1);
+  r.put("A", "B");
+};
+  }
+
   @Test
   public void testMissingDiskStore() throws Exception {
 Properties props = new Properties();
@@ -93,11 +109,7 @@ public class DiskStoreCommandsDUnitTest {
 
 createDiskStoreAndRegion(locator, 2);
 
-server1.invoke(() -> {
-  Cache cache = ClusterStartupRule.getCache();
-  Region r = cache.getRegion(REGION_1);
-  r.put("A", "B");
-});
+server1.invoke(dataProducer());
 
 gfsh.executeAndAssertThat("show missing-disk-stores")
 .containsOutput("No missing disk store found");
@@ -106,7 +118,8 @@ public class DiskStoreCommandsDUnitTest {
 
 server2.invoke(() -> {
   Cache cache = ClusterStartupRule.getCache();
-  Region r = cache.getRegion(REGION_1);
+  assertThat(cache).isNotNull();
+  Region r = cache.getRegion(REGION_1);
   r.put("A", "C");
 });
 
@@ -136,6 +149,7 @@ public class DiskStoreCommandsDUnitTest {
 
 server1.invoke(() -> {
   Cache cache = ClusterStartup

[geode] branch feature/GEODE-6108 updated (eb57bfd -> 6174897)

2018-11-30 Thread eshu11
This is an automated email from the ASF dual-hosted git repository.

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


from eb57bfd  GEODE-6108: Handle client putIfAbsent returns value due to 
retry
 add 6174897  Trigger precheckin

No new revisions were added by this update.

Summary of changes:



[geode] branch develop updated: GEODE-6113: Unable to run geode-web http-based dunit tests in IntelliJ (#2924)

2018-11-30 Thread jensdeppe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new f412744  GEODE-6113: Unable to run geode-web http-based dunit tests in 
IntelliJ (#2924)
f412744 is described below

commit f412744edb1083b9b56364c19025c6731bb9031f
Author: Jens Deppe 
AuthorDate: Fri Nov 30 09:48:48 2018 -0800

GEODE-6113: Unable to run geode-web http-based dunit tests in IntelliJ 
(#2924)
---
 geode-connectors/build.gradle | 1 +
 geode-core/build.gradle   | 1 +
 geode-dunit/build.gradle  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/geode-connectors/build.gradle b/geode-connectors/build.gradle
index 4ad624b..9795dfe 100644
--- a/geode-connectors/build.gradle
+++ b/geode-connectors/build.gradle
@@ -63,6 +63,7 @@ dependencies {
 exclude module: 'guava'
 exclude module: 'spring-aop'
 exclude module: 'spring-context-support'
+exclude module: 'spring-core'
 ext.optional = true
   }
 
diff --git a/geode-core/build.gradle b/geode-core/build.gradle
index ac8d307..3b28a15 100755
--- a/geode-core/build.gradle
+++ b/geode-core/build.gradle
@@ -238,6 +238,7 @@ dependencies {
 exclude module: 'guava'
 exclude module: 'spring-aop'
 exclude module: 'spring-context-support'
+exclude module: 'spring-core'
 ext.optional = true
   }
   compile('org.iq80.snappy:snappy:' + project.'snappy-java.version') {
diff --git a/geode-dunit/build.gradle b/geode-dunit/build.gradle
index 33a2448..52ee13c 100755
--- a/geode-dunit/build.gradle
+++ b/geode-dunit/build.gradle
@@ -36,6 +36,7 @@ dependencies {
 exclude module: 'guava'
 exclude module: 'spring-aop'
 exclude module: 'spring-context-support'
+exclude module: 'spring-core'
 ext.optional = true
   }
   compile('com.google.guava:guava:' + project.'guava.version')



[geode] branch develop updated: GEODE-6096: Cleanup dunit internals (#2919)

2018-11-30 Thread klund
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


The following commit(s) were added to refs/heads/develop by this push:
 new 9918f9b  GEODE-6096: Cleanup dunit internals (#2919)
9918f9b is described below

commit 9918f9b13621a6318346c795d127ba94d718953f
Author: Kirk Lund 
AuthorDate: Fri Nov 30 09:50:01 2018 -0800

GEODE-6096: Cleanup dunit internals (#2919)

* Move all dunit internals to test.dunit.internal package.
* Move VersionManager to test.version package.
* Move greplogs to test.greplogs package.
* Rename some classes to be more informative.
* Reduce public to package-protected where it's appropriate.
* Extract inner classes/interfaces to be top-level classes.
---
 .../cli/commands/ConnectCommandAcceptanceTest.java |   2 +-
 .../geode/test/junit/rules/GfshRuleTest.java   |   2 +-
 ...omcatSessionBackwardsCompatibilityTestBase.java |   2 +-
 .../distributed/DistributedLockBlackboardImpl.java |   2 +-
 .../apache/geode/distributed/LocatorDUnitTest.java |   2 +-
 .../geode/distributed/SystemAdminDUnitTest.java|   2 +-
 .../alerting/AlertingServiceDistributedTest.java   |   2 +-
 ...rtingServiceWithoutListenerDistributedTest.java |   2 +-
 ...overWithMixedVersionServersDistributedTest.java |   2 +-
 .../CompressionRegionConfigDUnitTest.java  |   2 +-
 .../DistributedSystemMXBeanDistributedTest.java|   2 +-
 ...butedSystemMXBeanWithAlertsDistributedTest.java |   2 +-
 ...stemMXBeanWithNotificationsDistributedTest.java |   2 +-
 .../geode/management/ManagementTestRule.java   |   2 +-
 .../apache/geode/security/ClientAuthDUnitTest.java |   2 +-
 .../security/ClientAuthenticationDUnitTest.java|   2 +-
 .../ClientAuthenticationPart2DUnitTest.java|   2 +-
 .../security/ClientAuthenticationTestCase.java |   2 +-
 ...tAuthorizationLegacyConfigurationDUnitTest.java |   2 +-
 ...aAuthorizationUsingLegacySecurityDUnitTest.java |   2 +-
 ...onUsingLegacySecurityWithFailoverDUnitTest.java |   2 +-
 .../DistributedSystemMXBeanIntegrationTest.java|   2 +-
 .../internal/cache/TxCommitMessageBCTestBase.java  |   2 +-
 .../RollingUpgrade2DUnitTestBase.java  |   4 +-
 .../rollingupgrade/RollingUpgradeDUnitTest.java|   2 +-
 ...gradeHARegionNameOnDifferentServerVersions.java |   2 +-
 .../RollingUpgradeNonHAFunction.java   |   2 +-
 .../rollingupgrade/RollingUpgradeTracePRQuery.java |   2 +-
 .../RollingUpgradeVerifyXmlEntity.java |   2 +-
 .../tier/sockets/ClientServerMiscBCDUnitTest.java  |   2 +-
 .../security/ClientAuthorizationCQDUnitTest.java   |   2 +-
 ...tartupRuleCanSpecifyOlderVersionsDUnitTest.java |   2 +-
 .../dunit/examples/BeforeClassExampleTest.java |   2 +-
 geode-dunit/src/main/java/hydra/MethExecutor.java  | 363 -
 .../src/main/java/hydra/MethExecutorResult.java| 182 ---
 .../sockets/ClientServerMiscDUnitTestBase.java |   4 +-
 .../security/ClientAuthorizationTestCase.java  |   2 +-
 .../java/org/apache/geode/test/dunit/DUnitEnv.java |   2 +-
 .../java/org/apache/geode/test/dunit/Host.java |   4 +-
 .../main/java/org/apache/geode/test/dunit/VM.java  |  21 +-
 .../{standalone => internal}/BounceResult.java |   2 +-
 .../dunit/{standalone => internal}/ChildVM.java|   5 +-
 .../geode/test/dunit/internal/DUnitHost.java   | 119 +++
 .../{standalone => internal}/DUnitLauncher.java| 174 +-
 .../dunit/internal/InternalBlackboardImpl.java |   2 -
 .../dunit/internal/JUnit4DistributedTestCase.java  |   1 -
 .../apache/geode/test/dunit/internal/Master.java   |  71 
 .../MasterRemote.java} |  25 +-
 .../geode/test/dunit/internal/MethodInvoker.java   | 255 +++
 .../test/dunit/internal/MethodInvokerResult.java   | 139 
 .../{standalone => internal}/ProcessHolder.java|   2 +-
 .../{standalone => internal}/ProcessManager.java   |   3 +-
 .../{standalone => internal}/RemoteDUnitVM.java|  23 +-
 .../{standalone => internal}/RemoteDUnitVMIF.java  |  11 +-
 .../StandAloneDUnitEnv.java|   4 +-
 .../test/dunit/rules/AbstractDistributedRule.java  |   2 +-
 .../apache/geode/test/dunit/rules/CacheRule.java   |   2 +-
 .../geode/test/dunit/rules/ClusterStartupRule.java |   6 +-
 .../test/dunit/rules/DistributedDiskDirRule.java   |   2 +-
 .../geode/test/dunit/rules/DistributedRule.java|   2 +-
 .../DistributedUseJacksonForJsonPathRule.java  |   2 +-
 .../geode/test}/greplogs/ExpectedStrings.java  |   2 +-
 .../apache/geode/test}/greplogs/LogConsumer.java   |   2 +-
 .../test/dunit/internal/MethodInvokerTest.java}|  31 +-
 .../geode/test/junit/rules/gfsh/GfshRule.java  |   2 +-
 .../standalone => version}/VersionManager.java |   2 +-
 .../VersionManagerJUnitTest.java   |   2 +-
 .../LuceneSe

[geode] branch develop updated: GEODE-6092: Delete unused test resource (#2916)

2018-11-30 Thread klund
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


The following commit(s) were added to refs/heads/develop by this push:
 new 531  GEODE-6092: Delete unused test resource (#2916)
531 is described below

commit 5316879d1cc04c62d073a64b321b24b79ab5
Author: Kirk Lund 
AuthorDate: Fri Nov 30 09:50:42 2018 -0800

GEODE-6092: Delete unused test resource (#2916)

Delete SingleHopClientExecutorWithLoggingIntegrationTest_log4j2.xml
---
 ...ntExecutorWithLoggingIntegrationTest_log4j2.xml | 38 --
 1 file changed, 38 deletions(-)

diff --git 
a/geode-core/src/integrationTest/resources/org/apache/geode/cache/client/internal/SingleHopClientExecutorWithLoggingIntegrationTest_log4j2.xml
 
b/geode-core/src/integrationTest/resources/org/apache/geode/cache/client/internal/SingleHopClientExecutorWithLoggingIntegrationTest_log4j2.xml
deleted file mode 100644
index edfa2d8..000
--- 
a/geode-core/src/integrationTest/resources/org/apache/geode/cache/client/internal/SingleHopClientExecutorWithLoggingIntegrationTest_log4j2.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-[%level{lowerCase=true} 
%date{/MM/dd HH:mm:ss.SSS z} <%thread> tid=%hexTid] 
%message%n%throwable%n
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-



[geode-benchmarks] 01/01: Merge branch 'feature/5_min_benchmarks' into develop

2018-11-30 Thread upthewaterspout
This is an automated email from the ASF dual-hosted git repository.

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

commit 325f07b8f708605a392bb96a9ee4c554b2976244
Merge: e061cad d62e45e
Author: Dan Smith 
AuthorDate: Fri Nov 30 09:53:46 2018 -0800

Merge branch 'feature/5_min_benchmarks' into develop

 .../apache/geode/benchmark/configurations/BenchmarkParameters.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)




[geode-benchmarks] branch develop updated (e061cad -> 325f07b)

2018-11-30 Thread upthewaterspout
This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


from e061cad  GEODE-6106: Adding spotless and rat to the benchmark build. 
(#11)
 add d62e45e  Changing benchmarks to run for 5 minutes
 new 325f07b  Merge branch 'feature/5_min_benchmarks' into develop

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:
 .../apache/geode/benchmark/configurations/BenchmarkParameters.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



[geode-native] branch develop updated: GEODE-4728 User Guide: Add a page for Function Execution

2018-11-30 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new d08e798  GEODE-4728 User Guide: Add a page for Function Execution
d08e798 is described below

commit d08e79876b186ae2bdd0af162aa3432be219ef56
Author: Dave Barnes 
AuthorDate: Fri Nov 30 10:10:11 2018 -0800

GEODE-4728 User Guide: Add a page for Function Execution
---
 .../source/subnavs/geode-nc-nav.erb|  4 
 .../function-execution.html.md.erb | 23 ++
 2 files changed, 27 insertions(+)

diff --git 
a/docs/geode-native-book/master_middleman/source/subnavs/geode-nc-nav.erb 
b/docs/geode-native-book/master_middleman/source/subnavs/geode-nc-nav.erb
index fc17f06..d1922ec 100644
--- a/docs/geode-native-book/master_middleman/source/subnavs/geode-nc-nav.erb
+++ b/docs/geode-native-book/master_middleman/source/subnavs/geode-nc-nav.erb
@@ -86,6 +86,10 @@ limitations under the License.
 
 
 
+  Function
 Execution
+
+
+
   Transactions
 
   
diff --git 
a/docs/geode-native-docs/function-execution/function-execution.html.md.erb 
b/docs/geode-native-docs/function-execution/function-execution.html.md.erb
new file mode 100644
index 000..1595501
--- /dev/null
+++ b/docs/geode-native-docs/function-execution/function-execution.html.md.erb
@@ -0,0 +1,23 @@
+---
+title:  Function Execution
+---
+
+
+
+A function is a body of code that resides on a server and that an application 
can invoke from a client or from another server without the need to send the 
function code itself.
+



[geode] branch develop updated: GEODE-6113: Fix checkPom failures

2018-11-30 Thread jensdeppe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new af51c95  GEODE-6113: Fix checkPom failures
af51c95 is described below

commit af51c9593c143efeb2fad9f9baa9fabc3089bcbd
Author: Jens Deppe 
AuthorDate: Fri Nov 30 10:11:17 2018 -0800

GEODE-6113: Fix checkPom failures
---
 geode-connectors/src/test/resources/expected-pom.xml | 4 
 geode-core/src/test/resources/expected-pom.xml   | 4 
 geode-dunit/src/test/resources/expected-pom.xml  | 4 
 3 files changed, 12 insertions(+)

diff --git a/geode-connectors/src/test/resources/expected-pom.xml 
b/geode-connectors/src/test/resources/expected-pom.xml
index 64656e9..53f8a64 100644
--- a/geode-connectors/src/test/resources/expected-pom.xml
+++ b/geode-connectors/src/test/resources/expected-pom.xml
@@ -89,6 +89,10 @@
   *
 
 
+  spring-core
+  *
+
+
   asm
   *
 
diff --git a/geode-core/src/test/resources/expected-pom.xml 
b/geode-core/src/test/resources/expected-pom.xml
index 9b62224..6a8c044 100644
--- a/geode-core/src/test/resources/expected-pom.xml
+++ b/geode-core/src/test/resources/expected-pom.xml
@@ -240,6 +240,10 @@
   *
 
 
+  spring-core
+  *
+
+
   asm
   *
 
diff --git a/geode-dunit/src/test/resources/expected-pom.xml 
b/geode-dunit/src/test/resources/expected-pom.xml
index 8fb703e..1260284 100644
--- a/geode-dunit/src/test/resources/expected-pom.xml
+++ b/geode-dunit/src/test/resources/expected-pom.xml
@@ -100,6 +100,10 @@
   *
 
 
+  spring-core
+  *
+
+
   asm
   *
 



[geode] branch develop updated: GEODE-6111: Add gradle properties to extend http timeouts. (#2922)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new 13ee457  GEODE-6111: Add gradle properties to extend http timeouts. 
(#2922)
13ee457 is described below

commit 13ee457cd76c3f67f1c21c16e7b1826a728a6903
Author: Patrick Rhomberg 
AuthorDate: Fri Nov 30 10:13:36 2018 -0800

GEODE-6111: Add gradle properties to extend http timeouts. (#2922)
---
 gradle.properties | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 5e94a49..a9b44e4 100755
--- a/gradle.properties
+++ b/gradle.properties
@@ -46,9 +46,6 @@ buildId = 0
 productName = Apache Geode
 productOrg = Apache Software Foundation (ASF)
 
-org.gradle.daemon = true
-org.gradle.jvmargs = -Xmx3g
-
 minimumGradleVersion = 4.10.1
 # Set this on the command line with -P or in ~/.gradle/gradle.properties
 # to change the buildDir location.  Use an absolute path.
@@ -75,6 +72,10 @@ testJVMVer=8
 repeat = 100
 
 org.gradle.caching = true
-org.gradle.parallel = false
 org.gradle.configureondemand = false
+org.gradle.daemon = true
+org.gradle.jvmargs = -Xmx3g
+org.gradle.parallel = false
 
+org.gradle.internal.http.socketTimeout=6
+org.gradle.internal.http.connectionTimeout=6



[geode-benchmarks] branch develop updated: Tweaking the output format of the analyzer

2018-11-30 Thread upthewaterspout
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new 904dec5  Tweaking the output format of the analyzer
904dec5 is described below

commit 904dec5e19ef8de1a76a61d30b124ee5cd02f3c1
Author: Dan Smith 
AuthorDate: Thu Nov 29 17:29:55 2018 -0800

Tweaking the output format of the analyzer
---
 .../perftest/analysis/BenchmarkRunResult.java  | 93 --
 .../analysis/BenchmarkRunAnalyzerTest.java | 57 +++--
 2 files changed, 97 insertions(+), 53 deletions(-)

diff --git 
a/harness/src/main/java/org/apache/geode/perftest/analysis/BenchmarkRunResult.java
 
b/harness/src/main/java/org/apache/geode/perftest/analysis/BenchmarkRunResult.java
index 07d4c41..96b6d42 100644
--- 
a/harness/src/main/java/org/apache/geode/perftest/analysis/BenchmarkRunResult.java
+++ 
b/harness/src/main/java/org/apache/geode/perftest/analysis/BenchmarkRunResult.java
@@ -17,12 +17,14 @@ package org.apache.geode.perftest.analysis;
 import java.io.IOException;
 import java.io.PrintWriter;
 import java.io.Serializable;
+import java.io.StringWriter;
 import java.io.Writer;
 import java.util.ArrayList;
 import java.util.List;
+import java.util.Objects;
 
 public class BenchmarkRunResult implements Serializable {
-  private List benchmarkResults = new ArrayList<>();
+  private final List benchmarkResults = new ArrayList<>();
 
   public BenchmarkResult addBenchmark(String name) {
 final BenchmarkResult benchmarkResult = new BenchmarkResult(name);
@@ -33,13 +35,12 @@ public class BenchmarkRunResult implements Serializable {
   public void writeResult(Writer output) throws IOException {
 PrintWriter stream = new PrintWriter(output);
 for (BenchmarkResult benchmarkResult : benchmarkResults) {
-  stream.println("-- " + benchmarkResult.name + " --");
+  stream.println(benchmarkResult.name);
   for (ProbeResult probeResult : benchmarkResult.probeResults) {
-stream.println(probeResult.description);
-stream.println("Result: " + String.valueOf(probeResult.test));
-stream.println("Baseline: " + String.valueOf(probeResult.baseline));
-stream.println(
-"Relative performance: " + String.valueOf(probeResult.test / 
probeResult.baseline));
+stream.print(String.format("  %30s", probeResult.description));
+stream.print(String.format("  Baseline: %12.2f", 
probeResult.baseline));
+stream.print(String.format("  Test: %12.2f", probeResult.test));
+stream.print(String.format("  Ratio: %2.2f", probeResult.test / 
probeResult.baseline));
 stream.println();
   }
 }
@@ -47,6 +48,40 @@ public class BenchmarkRunResult implements Serializable {
 output.flush();
   }
 
+  @Override
+  public String toString() {
+StringWriter writer = new StringWriter();
+try {
+  this.writeResult(writer);
+} catch (IOException e) {
+  throw new IllegalStateException();
+}
+
+return writer.toString();
+
+  }
+
+  public List getBenchmarkResults() {
+return benchmarkResults;
+  }
+
+  @Override
+  public boolean equals(Object o) {
+if (this == o) {
+  return true;
+}
+if (o == null || getClass() != o.getClass()) {
+  return false;
+}
+BenchmarkRunResult that = (BenchmarkRunResult) o;
+return Objects.equals(benchmarkResults, that.benchmarkResults);
+  }
+
+  @Override
+  public int hashCode() {
+return Objects.hash(benchmarkResults);
+  }
+
   static class BenchmarkResult implements Serializable {
 private final String name;
 private final List probeResults = new ArrayList<>();
@@ -58,6 +93,25 @@ public class BenchmarkRunResult implements Serializable {
 public void addProbeResult(String name, double baseline, double test) {
   probeResults.add(new ProbeResult(name, baseline, test));
 }
+
+@Override
+public boolean equals(Object o) {
+  if (this == o) {
+return true;
+  }
+  if (o == null || getClass() != o.getClass()) {
+return false;
+  }
+  BenchmarkResult that = (BenchmarkResult) o;
+  return Objects.equals(name, that.name) &&
+  Objects.equals(probeResults, that.probeResults);
+}
+
+@Override
+public int hashCode() {
+
+  return Objects.hash(name, probeResults);
+}
   }
 
   private static class ProbeResult implements Serializable {
@@ -70,5 +124,30 @@ public class BenchmarkRunResult implements Serializable {
   this.baseline = baseline;
   this.test = test;
 }
+
+@Override
+public boolean equals(Object o) {
+  if (this == o) {
+return true;
+  }
+  if (o == null || getClass() != o.getClass()) {
+return false;
+  }
+  ProbeResult that = (ProbeResult) o;
+  return fuzzyEquals(that.baseline, baseline

[geode-benchmarks] branch feature/fast_benchmarks created (now 15a720c)

2018-11-30 Thread upthewaterspout
This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a change to branch feature/fast_benchmarks
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


  at 15a720c  Reducing benchmark time to a few seconds

This branch includes the following new commits:

 new 15a720c  Reducing benchmark time to a few seconds

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.




[geode-benchmarks] 01/01: Reducing benchmark time to a few seconds

2018-11-30 Thread upthewaterspout
This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch feature/fast_benchmarks
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git

commit 15a720cd7a05b29750375570a55909d8ac364c0f
Author: Dan Smith 
AuthorDate: Fri Nov 30 12:23:08 2018 -0800

Reducing benchmark time to a few seconds
---
 .../apache/geode/benchmark/configurations/BenchmarkParameters.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
 
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
index 534e332..d5dfe68 100644
--- 
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
+++ 
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
@@ -38,12 +38,12 @@ public class BenchmarkParameters {
   /**
* Warm up time for the benchmark running on the default runner
*/
-  public static final int WARM_UP_TIME = 60;
+  public static final int WARM_UP_TIME = 3;
 
   /**
* Total duration for which the benchmark will run on the default runner
*/
-  public static final int BENCHMARK_DURATION = 240;
+  public static final int BENCHMARK_DURATION = 5;
 
   /**
* String key for the server cache attribute in the TestContext's 
attributeTree



[geode] branch develop updated: GEODE-5971: Refactor server status/stop commands to return ResultModel (#2887)

2018-11-30 Thread jensdeppe
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new 8698edc  GEODE-5971: Refactor server status/stop commands to return 
ResultModel (#2887)
8698edc is described below

commit 8698edc9fa3b5ec8cd96e2db5628a51040096c88
Author: Jens Deppe 
AuthorDate: Fri Nov 30 12:27:16 2018 -0800

GEODE-5971: Refactor server status/stop commands to return ResultModel 
(#2887)
---
 .../commands/lifecycle/StatusServerCommand.java| 23 +++---
 .../cli/commands/lifecycle/StopServerCommand.java  | 18 +++--
 2 files changed, 18 insertions(+), 23 deletions(-)

diff --git 
a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StatusServerCommand.java
 
b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StatusServerCommand.java
index cd4e6dc..725cb21 100644
--- 
a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StatusServerCommand.java
+++ 
b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StatusServerCommand.java
@@ -27,17 +27,16 @@ import org.apache.geode.internal.lang.StringUtils;
 import org.apache.geode.management.MemberMXBean;
 import org.apache.geode.management.cli.CliMetaData;
 import org.apache.geode.management.cli.ConverterHint;
-import org.apache.geode.management.cli.Result;
-import org.apache.geode.management.internal.cli.commands.InternalGfshCommand;
+import org.apache.geode.management.cli.GfshCommand;
 import org.apache.geode.management.internal.cli.i18n.CliStrings;
-import org.apache.geode.management.internal.cli.result.ResultBuilder;
+import org.apache.geode.management.internal.cli.result.model.ResultModel;
 
-public class StatusServerCommand extends InternalGfshCommand {
+public class StatusServerCommand extends GfshCommand {
 
   @CliCommand(value = CliStrings.STATUS_SERVER, help = 
CliStrings.STATUS_SERVER__HELP)
   @CliMetaData(shellOnly = true,
   relatedTopic = {CliStrings.TOPIC_GEODE_SERVER, 
CliStrings.TOPIC_GEODE_LIFECYCLE})
-  public Result statusServer(
+  public ResultModel statusServer(
   @CliOption(key = CliStrings.STATUS_SERVER__MEMBER, optionContext = 
ConverterHint.MEMBERIDNAME,
   help = CliStrings.STATUS_SERVER__MEMBER__HELP) final String member,
   @CliOption(key = CliStrings.STATUS_SERVER__PID,
@@ -51,19 +50,19 @@ public class StatusServerCommand extends 
InternalGfshCommand {
 final MemberMXBean serverProxy = getMemberMXBean(member);
 
 if (serverProxy != null) {
-  return ResultBuilder.createInfoResult(
+  return ResultModel.createInfo(
   
ServerLauncher.ServerState.fromJson(serverProxy.status()).toString());
 } else {
-  return ResultBuilder.createUserErrorResult(CliStrings
-  
.format(CliStrings.STATUS_SERVER__NO_SERVER_FOUND_FOR_MEMBER_ERROR_MESSAGE, 
member));
+  return ResultModel.createError((CliStrings
+  
.format(CliStrings.STATUS_SERVER__NO_SERVER_FOUND_FOR_MEMBER_ERROR_MESSAGE, 
member)));
 }
   } else {
-return ResultBuilder.createUserErrorResult(CliStrings
+return ResultModel.createError(CliStrings
 
.format(CliStrings.STATUS_SERVICE__GFSH_NOT_CONNECTED_ERROR_MESSAGE, "Cache 
Server"));
   }
 } else {
   final ServerLauncher serverLauncher = new ServerLauncher.Builder()
-  .setCommand(ServerLauncher.Command.STATUS).setDebug(isDebugging())
+  .setCommand(ServerLauncher.Command.STATUS)
   // NOTE since we do not know whether the "CacheServer" was enabled 
or not on the GemFire
   // server when it was started,
   // set the disableDefaultServer property in the 
ServerLauncher.Builder to default status
@@ -75,9 +74,9 @@ public class StatusServerCommand extends InternalGfshCommand {
 
   if (status.getStatus().equals(AbstractLauncher.Status.NOT_RESPONDING)
   || status.getStatus().equals(AbstractLauncher.Status.STOPPED)) {
-return ResultBuilder.createGemFireErrorResult(status.toString());
+return ResultModel.createError(status.toString());
   }
-  return ResultBuilder.createInfoResult(status.toString());
+  return ResultModel.createInfo(status.toString());
 }
   }
 }
diff --git 
a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StopServerCommand.java
 
b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StopServerCommand.java
index ee1fd77..bea88d1 100644
--- 
a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StopServerCommand.java
+++ 
b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/lifecycle/StopServerCommand.java
@@ -28,10 +28,9 

[geode] branch develop updated: GEODE-6110: Add .java-version to .gitignore and rat ignore list. (#2921)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new 0c8b101  GEODE-6110: Add .java-version to .gitignore and rat ignore 
list. (#2921)
0c8b101 is described below

commit 0c8b10129d3e1d0b50050f919df9aa3b8c8d4bff
Author: Patrick Rhomberg 
AuthorDate: Fri Nov 30 12:57:32 2018 -0800

GEODE-6110: Add .java-version to .gitignore and rat ignore list. (#2921)
---
 .gitignore| 1 +
 gradle/rat.gradle | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index f2987c1..47d635b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,7 @@ build/
 .project
 .settings/
 .idea/
+.java-version
 build-eclipse/
 /tags
 out/
diff --git a/gradle/rat.gradle b/gradle/rat.gradle
index 1048d96..05f9236 100644
--- a/gradle/rat.gradle
+++ b/gradle/rat.gradle
@@ -102,6 +102,7 @@ rat {
 
 // local configuration files that are ignored by git
 'ci/pipelines/meta/meta.properties.local',
+'.java-version', // file created by `jenv local`
 
 // modules
 'extensions/**/log4j.properties',
@@ -114,7 +115,6 @@ rat {
 
'extensions/geode-modules/src/test/resources/org/apache/geode/modules/Person.hbm.xml',
 
 // cargo log files
-//'geode-assembly/cargo_logs/*',
 'geode-assembly/cargo_logs/**',
 
 // these are test files that don't expect the first element to be a comment



[geode] branch feature/GEODE-6118 created (now 193db1b)

2018-11-30 Thread jchen21
This is an automated email from the ASF dual-hosted git repository.

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


  at 193db1b  GEODE-6118: Support slash on region name for jdbc-mapping 
commands

This branch includes the following new commits:

 new 193db1b  GEODE-6118: Support slash on region name for jdbc-mapping 
commands

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.




[geode] 01/01: GEODE-6118: Support slash on region name for jdbc-mapping commands

2018-11-30 Thread jchen21
This is an automated email from the ASF dual-hosted git repository.

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

commit 193db1b09d2f65b028c0162f316fd6649b7bed0d
Author: Darrel Schneider 
AuthorDate: Fri Nov 30 13:25:06 2018 -0800

GEODE-6118: Support slash on region name for jdbc-mapping commands

Co-authored-by: Darrel Schneider 
Co-authored-by: Jianxia Chen 
---
 geode-connectors/build.gradle  |   4 +-
 .../cli/CreateMappingCommandDUnitTest.java | 179 -
 .../cli/DescribeMappingCommandDUnitTest.java   |  23 ++-
 .../cli/DestroyMappingCommandDunitTest.java|  46 +-
 .../jdbc/internal/cli/CreateMappingCommand.java|   7 +
 .../jdbc/internal/cli/DescribeMappingCommand.java  |   4 +
 .../jdbc/internal/cli/DestroyMappingCommand.java   |   4 +
 .../internal/cli/CreateMappingCommandTest.java |  35 
 .../internal/cli/DescribeMappingCommandTest.java   |  18 +++
 .../internal/cli/DestroyMappingCommandTest.java|  17 +-
 10 files changed, 249 insertions(+), 88 deletions(-)

diff --git a/geode-connectors/build.gradle b/geode-connectors/build.gradle
index 9795dfe..bd05614 100644
--- a/geode-connectors/build.gradle
+++ b/geode-connectors/build.gradle
@@ -72,10 +72,12 @@ dependencies {
   integrationTestCompile('junit:junit:' + project.'junit.version')
   integrationTestCompile('junit:junit:4.12')
   integrationTestCompile('org.assertj:assertj-core:' + 
project.'assertj-core.version')
+  integrationTestCompile('pl.pragmatists:JUnitParams:' + 
project.'JUnitParams.version')
 
   distributedTestCompile('junit:junit:' + project.'junit.version')
   distributedTestCompile('org.assertj:assertj-core:' + 
project.'assertj-core.version')
   distributedTestCompile('org.mockito:mockito-core:2.19.1')
+  distributedTestCompile('pl.pragmatists:JUnitParams:' + 
project.'JUnitParams.version')
   distributedTestRuntime('org.apache.derby:derby:' + project.'derby.version')
 
   acceptanceTestCompile('com.github.stefanbirkner:system-rules:' + 
project.'system-rules.version') {
@@ -86,7 +88,7 @@ dependencies {
   acceptanceTestCompile('org.awaitility:awaitility:' + 
project.'awaitility.version')
   acceptanceTestCompile('org.mockito:mockito-core:' + 
project.'mockito-core.version')
   acceptanceTestCompile(group: 'com.palantir.docker.compose', name: 
'docker-compose-rule-core', version: '0.31.1')
-
+  acceptanceTestCompile('pl.pragmatists:JUnitParams:' + 
project.'JUnitParams.version')
   acceptanceTestCompile(group: 'com.palantir.docker.compose', name: 
'docker-compose-rule-junit4', version: '0.31.1')
 
   acceptanceTestRuntime(group: 'mysql', name: 'mysql-connector-java', version: 
'5.1.46')
diff --git 
a/geode-connectors/src/distributedTest/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandDUnitTest.java
 
b/geode-connectors/src/distributedTest/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandDUnitTest.java
index d9f8e94..6856fc7 100644
--- 
a/geode-connectors/src/distributedTest/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandDUnitTest.java
+++ 
b/geode-connectors/src/distributedTest/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandDUnitTest.java
@@ -24,10 +24,13 @@ import static org.assertj.core.api.Assertions.assertThat;
 
 import java.util.List;
 
+import junitparams.JUnitParamsRunner;
+import junitparams.Parameters;
 import org.junit.Before;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
+import org.junit.runner.RunWith;
 
 import org.apache.geode.cache.Region;
 import org.apache.geode.cache.asyncqueue.AsyncEventQueue;
@@ -49,6 +52,7 @@ import org.apache.geode.test.junit.rules.GfshCommandRule;
 import org.apache.geode.test.junit.rules.serializable.SerializableTestName;
 
 @Category({JDBCConnectorTest.class})
+@RunWith(JUnitParamsRunner.class)
 public class CreateMappingCommandDUnitTest {
 
   private static final String REGION_NAME = "testRegion";
@@ -74,96 +78,108 @@ public class CreateMappingCommandDUnitTest {
 
   }
 
-  private void setupReplicate() {
-setupReplicate(false);
+  private void setupReplicate(String regionName) {
+setupReplicate(regionName, false);
   }
 
-  private void setupReplicate(boolean addLoader) {
-gfsh.executeAndAssertThat("create region --name=" + REGION_NAME + " 
--type=REPLICATE"
+  private void setupReplicate(String regionName, boolean addLoader) {
+gfsh.executeAndAssertThat("create region --name=" + regionName + " 
--type=REPLICATE"
 + (addLoader ? " --cache-loader=" + JdbcLoader.class.getName() : ""))
 .statusIsSuccess();
   }
 
-  private void setupPartition() {
-gfsh.executeAndAssertThat("create region --name=" + REGION_NAME + " 
--type=PARTITION")
+  private void setupPartition(String regionName) {
+gfsh.executeAndAssertThat("create region --name=" + regionNam

[geode] branch staging/docs-grant1 deleted (was 2eabdb2)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch staging/docs-grant1
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 2eabdb2  Revert "Add empty sections as placeholders for automated 
rebalance"

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-64 deleted (was cb1b2f0)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was cb1b2f0  GEODE-64: Add SonarQube Plugin And Initial Configuration

This change permanently discards the following revisions:

 discard cb1b2f0  GEODE-64: Add SonarQube Plugin And Initial Configuration



[geode] branch feature/GEODE-78 deleted (was 85b576e)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 85b576e  GEODE-78: Move JVSD docs from user guide to README on feature 
branch [#130994985]

This change permanently discards the following revisions:

 discard 85b576e  GEODE-78: Move JVSD docs from user guide to README on feature 
branch [#130994985]
 discard ffc98ad  GEODE-1157: Update build doc
 discard aad5d66  GEODE-1157: Produce mvn log output on failure



[geode] branch feature/GEODE-2201 deleted (was d427613)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was d427613  GEODE-2201 Make UITests a bit more resilient

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-1968 deleted (was 84cfbdf)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 84cfbdf  Set aside hibernate cache docs until the corresponding code 
is mainstreamed.

This change permanently discards the following revisions:

 discard 84cfbdf  Set aside hibernate cache docs until the corresponding code 
is mainstreamed.



[geode] branch feature/GEODE-1912 deleted (was 809d64d)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 809d64d  GEODE-1912: use Spring shell's parser and delete our own 
parsing code

This change permanently discards the following revisions:

 discard 809d64d  GEODE-1912: use Spring shell's parser and delete our own 
parsing code



[geode] branch feature/GEODE-79 deleted (was 567fa24)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 567fa24  GEODE-79 Add doc file with docs of log collection utility

This change permanently discards the following revisions:

 discard 567fa24  GEODE-79 Add doc file with docs of log collection utility
 discard e189c21  GEODE-79: Imported logcollectionutil from 
geode-1.0.0-SNAPSHOT-2.src.tar



[geode] branch feature/GEODE-1883 deleted (was d54080a)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was d54080a  GEODE-1883: make auth-init optional

This change permanently discards the following revisions:

 discard d54080a  GEODE-1883: make auth-init optional



[geode] branch feature/GEODE-1895 deleted (was 2162eff)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 2162eff  Merge branch 'feature/GEODE-1785' into feature/GEODE-1895

This change permanently discards the following revisions:

 discard 2162eff  Merge branch 'feature/GEODE-1785' into feature/GEODE-1895
 discard 4020683  changed gradle to gradlew added apache license
 discard 0db1dc8  removed unneeded OffHeapRegionEntry references
 discard 293a56e  removed release method from offheap LeafRegionEntry.cpp
 discard 2f9ea5e  Merge branch 'feature/GEODE-1785' into feature/GEODE-1895
 discard 34ba0f3  made release method default on interfaces got rid of 
instanceof on release call
 discard 48808a9  generated new class files
 discard d484a01  updated to newest version of files
 discard 3b439d3  added generateRegionEntryClasses.sh and LeafRegionEntry.cpp



[geode] branch feature/e2e-testing deleted (was 905003c)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/e2e-testing
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 905003c  Add snapshot (export/import) test

This change permanently discards the following revisions:

 discard 905003c  Add snapshot (export/import) test
 discard 49bea47  Remove cluster start speedup
 discard 9c4ced8  Make hostname, member name and container name consistent
 discard e4313d2  Remove index from container start - now just auto-incremented
 discard aa9b675  Function deployment test
 discard 6d09723  Fix failing test
 discard 0ff26e8  Add priority to Jbehave steps
 discard 946ff2c  Add a few more basic tests
 discard 7552126  Basic get/put test
 discard 2cec7a6  Merge branch 'develop' into feature/e2e-testing
 discard 4910c62  Able to execute gfsh commands
 discard a2ce01d  Exploring using docker for end-to-end tests



[geode] branch cluster-config-cleanup deleted (was 93399b9)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch cluster-config-cleanup
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 93399b9  wip

This change permanently discards the following revisions:

 discard 93399b9  wip



[geode] branch feature/GEODE-2654 deleted (was a561bd1)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was a561bd1  Resolve Eclipse/IntelliJ import order disagreement in style 
files.

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-2398 deleted (was aacfa06)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was aacfa06  GEODE-2398: Updates from review

This change permanently discards the following revisions:

 discard aacfa06  GEODE-2398: Updates from review
 discard 451c5b4  GEODE-2398: Retry oplog channel.write on silent failures



[geode] branch feature/fix_spark_compile_errors deleted (was 26ee221)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/fix_spark_compile_errors
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 26ee221  Undoing spark connector changes related to geode 1.2

This change permanently discards the following revisions:

 discard 26ee221  Undoing spark connector changes related to geode 1.2



[geode] branch feature/GEODE-2160 deleted (was 488850b)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 488850b  GEODE-2160: gfsh waits for process exit before reporting 
success

This change permanently discards the following revisions:

 discard 488850b  GEODE-2160: gfsh waits for process exit before reporting 
success



[geode] branch feature/GEODE-3213 deleted (was cdd8510)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was cdd8510  GEODE-3213: Adding Result object to avoid handling errors in 
special way

This change permanently discards the following revisions:

 discard cdd8510  GEODE-3213: Adding Result object to avoid handling errors in 
special way
 discard 2033ba7  GEODE-3213: Initial refactor for Protobuf protocol generic 
flow



[geode] branch feature/GEODE-2580 deleted (was 9a7d1fa)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 9a7d1fa  Closes #563

This change permanently discards the following revisions:

 discard 9a7d1fa  Closes #563
 discard 228aa3c  GEODE-2580: Amended some protobuf message definitions



[geode] branch feature/GEODE-3062-2 deleted (was 6384d87)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 6384d87  Revert "Revert "GEODE-3062: create new SecurityService after 
receiving cluster config""

This change permanently discards the following revisions:

 discard 6384d87  Revert "Revert "GEODE-3062: create new SecurityService after 
receiving cluster config""



[geode] branch feature/GEODE-1209 deleted (was b1291a4)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was b1291a4  GEODE-1209: For the new serializable class 
AsyncEventQueueFunctionArgs, added changes for AnalyzeSerializablesJUnitTest to 
run...

This change permanently discards the following revisions:

 discard b1291a4  GEODE-1209: For the new serializable class 
AsyncEventQueueFunctionArgs, added changes for AnalyzeSerializablesJUnitTest to 
run...
 discard 4487f0a  GEODE-1209: Updated javadoc to reflect the type of events 
passed with setIgnoreEvictionAndExpiration attribute.
 discard a353aea  GEODE-1209: Added gfsh support to set 
ignoreEvictionAndExpiration attribute for create AEQ command. Also cleaned up 
arguments for create AEQ function invoked by gfsh. Instead of object array the 
args are wrapped in args object.
 discard 5080498  GEODE-17: make sure commands tests are run in useHttp mode.
 discard 428bb51  GEODE-17: pulse not started with gemfire security enabled
 discard efd8869  Fixing compile errors in eclipse
 discard 3fb75c6  GEODE-11: Adding tests of fixed partitions and persistent 
lucene indexes
 discard dfccad8  GEODE-1293: Updating module scripts and structure
 discard 1ded88a  Revert "GEODE-1376: Cleaned up server port to be '0'."
 discard fa7fc1a  GEODE-732 Fixed the issue with List inside list and added 
test for it
 discard 2e1aa79  GEODE-1390: Move gfsh help tests from closed to open
 discard 536fc93  Revert "GEODE-1146: Amending Testcase to use proper client 
caches rather than peer servers. Also amending JUnit4CacheTestCase.java to set 
"locators" and "mcast-port" to correct settings for clients."
 discard eb6c91b  GEODE-1350: Add test category
 discard 3124c29  GEODE-1350: Provide local fix for Category and Parameterized 
test issue
 discard e394294  GEODE-1376: remove hydra.Log from DUnitLauncher
 discard 48a51d8  GEODE-1376: Cleaned up server port to be '0'. Cleaned up some 
legacy code and replaced with cleaner Lambda invocation. Replaced 
waitOnCriterion with Awaitility.
 discard 3197279  GEODE-1327 Now parent thread process copy of unresponsive 
members
 discard b5771a8  GEODE-1146: Amending Testcase to use proper client caches 
rather than peer servers. Also amending JUnit4CacheTestCase.java to set 
"locators" and "mcast-port" to correct settings for clients.
 discard 77ff257  GEODE-11: Tests of indexes on regions with 
overflow,eviction,expiration
 discard f740181  GEODE-11: Integration test of lucene index with analyzers
 discard ca89eb4  GEODE-1203: include spring-web in gfshDependency.jar
 discard 7d87536  GEODE-1224: fix mutation of cloning on PRs
 discard 46b17ce  GEODE-1375 When using multicast a new member needs to receive 
the multicast message digest
 discard ce19b85  GEODE-951: repackage GemFireParameterizedMessage and its 
factory
 discard e20cc2f  GEODE-1203: include spring-web in gfshDependency.jar
 discard 554c0f5  GEODE-1153: BucketOperatorWrapper fails to invoke completion 
callback.
 discard 1e47b91  GEODE-1371: delete unused xml file from java src set
 discard 8185528  GEODE-1380: mark 
testRebalanceWithOfflineChildRegionTwoDiskStores as Flaky
 discard 3fa22f0  GEODE-1330: Set boolean so that internal lucene regions 
aren't generated in xml
 discard 52ea8df  GEODE-1289: remove @Retained from getValueInVM
 discard af31607  GEODE-1379: update javadocs for off-heap and cloning
 discard a574eae  GEODE-1356: remove DataAsAddress references
 discard a8282eb  GEODE-248: remove unused BoundedLinkedHashMap
 discard 1db55d8  GEODE-1282: fix wan off-heap leak
 discard 03a7389  GEODE-1370: restore name of 
destroySharedConfiguration_forTestsOnly
 discard bb309a5  GEODE-699 CI failure 
PartitionedRegionSingleHopDUnitTest.test_MetadataServiceCallAccuracy
 discard 48ceece  GEODE-1360: Enabling to specify log4j2.xml for test in gradle
 discard 6ed3986  GEODE-1373: resolve the shiro subject in JMX 
AccessControlContext first
 discard 3d1fccc  GEODE-364: Amending Pool configuration to avoid the changing 
of connections, which could cause the test to fail.
 discard 0acb589  GEODE-1369: change ConfigCommandsDUnitTest to use 
TemporaryFolder
 discard 19b74fa  GEODE-11: Adding package level javadocs for lucene
 discard af68790  GEODE-92: PR with entry eviction 1 leaves 3 entries in memory 
with async overflow
 discard 226f165  GEODE-1260: Cache SCM metadata for source distributions
 discard 0f387a4  GEODE-1139: mark test method as flaky
 discard 0cd1695  GEODE-1234: add a test hook to track client transactions 
scheduled to be removed.
 discard e51b0f9  adding the required license header to a generated test class
 discard 4873929  GEODE-924: added FlakyTest category
 discard 93f2d3d  Revert "GEODE-1360: Enabling to specify log4j2.xml for 
junit/dunit/intgrationtest"
 discard 6267cd2  GEODE-596: change test to start servers on port 0
 discard e84a3c1  Moving a distributed lock service 

[geode] branch feature/GEODE-3109 deleted (was 12f90ee)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 12f90ee  Merge branch 'develop' into feature/GEODE-3109

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-2804v3 deleted (was ea8840f)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was ea8840f   GEODE-2804 Caching the InetAddress for configured ip string

This change permanently discards the following revisions:

 discard ea8840f   GEODE-2804 Caching the InetAddress for configured ip string
 discard 3a46b79  Added change to change InetAddress when there is IOException



[geode] branch feature/GEODE-2980 deleted (was ebb691d)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was ebb691d  GEODE-2980: remove unnecessary explicit keywords from 
interfaces

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3071 deleted (was dba7dcd)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was dba7dcd  Merge branch 'develop' into feature/GEODE-3071

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3049 deleted (was b788c0a)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was b788c0a  Merge branch 'develop' into feature/GEODE-3049

This change permanently discards the following revisions:

 discard b788c0a  Merge branch 'develop' into feature/GEODE-3049



[geode] branch feature/gradle-3.4.1 deleted (was 14232c6)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/gradle-3.4.1
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 14232c6  GEODE-2708: Declare ANTLR Dependency For antlr Configuration

This change permanently discards the following revisions:

 discard 14232c6  GEODE-2708: Declare ANTLR Dependency For antlr Configuration
 discard a926056  Revert "Revert "GEODE-2708: Update Minimum Gradle Version To 
3.4.1""
 discard 4ee7a8e  Revert "Revert "GEODE-2708: Update Gradle Wrapper To 3.4.1""



[geode] branch feature/GEODE_4439_initial deleted (was e7769c4)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/GEODE_4439_initial
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was e7769c4  GEODE-4439 Refactor HandShake.java

This change permanently discards the following revisions:

 discard e7769c4  GEODE-4439 Refactor HandShake.java



[geode] branch feature/GEODE-3314 deleted (was 4643e25)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 4643e25  GEODE-3314: Initial commit to reproduce DLockToken leak

This change permanently discards the following revisions:

 discard 4643e25  GEODE-3314: Initial commit to reproduce DLockToken leak



[geode] branch feature/GEODE-2804v2 deleted (was 718583b)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 718583b  GEODE-2919: revert: fix lucene security tests

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch GEM-1722-1629 deleted (was 69cd117)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch GEM-1722-1629
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 69cd117  Add debug output

This change permanently discards the following revisions:

 discard 69cd117  Add debug output
 discard cdab9c0  Fix spotless format
 discard b87400c  Improve debug messages



[geode] branch feature/GEODE-3285 deleted (was 5139a6c)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 5139a6c  WIP

This change permanently discards the following revisions:

 discard 5139a6c  WIP
 discard 7bdd362  GEODE-3285: New protocol authentication with SASL



[geode] branch feature/GEODE-3065 deleted (was 71df1bd)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 71df1bd  GEODE-3065: Marking RedisServerTest.java as Flaky. Seemed to 
be failing with bind address exceptions. Maybe the redis server needs to be 
started with random redis port.

This change permanently discards the following revisions:

 discard 71df1bd  GEODE-3065: Marking RedisServerTest.java as Flaky. Seemed to 
be failing with bind address exceptions. Maybe the redis server needs to be 
started with random redis port.



[geode] branch feature/GEODE-3027 deleted (was 8fc98b6)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 8fc98b6  moved to util package

This change permanently discards the following revisions:

 discard 8fc98b6  moved to util package
 discard 30b53ca  Merge remote-tracking branch 'origin/develop' into 
feature-3027
 discard c1cb175  removed delimiter from getName
 discard e402ef8  moved to partition package
 discard 4a901bf  cleaned up unit test
 discard 01675fa  changed delimiter to "|"
 discard d039aeb  spotless
 discard 6f2b738  made it a unit test
 discard 6e338dc  implemented string prefix partitioned resolver and added unit 
test



[geode] branch feature/GEODE-2995 deleted (was b0f48d1)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was b0f48d1  GEODE-2995: Added GetRequestOperationHandler.java and cleaned 
up some code

This change permanently discards the following revisions:

 discard b0f48d1  GEODE-2995: Added GetRequestOperationHandler.java and cleaned 
up some code
 discard d790ed5  GEODE-2995: Using Powermock to mock enums in 
CodecRegistryJUnitTest.java
 discard a460ee7  GEODE-2995: Adding Service Loading for all codecs or type 
TypeCodec
 discard fd303df  GEODE-2995: Added TypeCodec for all supported primitives and 
JSON
 discard 02860ba  GEODE-2995: Added Codec Registry Added translation service 
for Protobuf encoding type -> SerializationType Refactored unchecked Exceptions 
to checked Exceptions
 discard c7c1717  GEODE-2995: Adding encoding registry
 discard 51fccbb  GEODE-2995: Handle some refactoring (package renaming)
 discard e3af5a4  GEODE-2995: Adding OperationHandlerRegistry package renaming 
and restructuring
 discard 336b0e0  GEODE-2995: Adding EncodingType or OpsProcessor
 discard 719c691  GEODE-2995: Adding ProtobufProtocolHandler



[geode] branch feature/transcoding_experiments deleted (was 39f8126)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/transcoding_experiments
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 39f8126  Adding lz4 to the geode-assembly build

This change permanently discards the following revisions:

 discard 39f8126  Adding lz4 to the geode-assembly build
 discard 3bfdccf  Fixing an issue with shared lz4 streams in the protobuf server
 discard dc6bc6b  Adding a hacky feature flag to use lz4 compression with 
protobuf
 discard 8b01deb  Fixing the way the caching of strings works for the 
CachingSerializer
 discard e953f39  Adding a value serializer that sends protobuf structs but 
caches strings
 discard f5f3f6b  Adding a ValueSerializer that sends Pdx serialized data to 
the client
 discard 357e085  Merge branch 'develop' into feature/transcoding_experiments
 discard eb37bb4  Experimenting with buffering the input stream of protobuf
 discard e2c2ebe  Adding a value serializer that compresses values
 discard af30d5f  Handling double values in ProtobufStructSerializer
 discard 1c7d137  Handle nested objects/ArrayLists in ProtobufStructSerializer
 discard 68b6586  Adding a ValueSerializer for protobuf structs
 discard bdbfda5  GEODE-5043: Buffering protobuf output to avoid multiple 
packet sends
 discard 616d891  GEODE-5044: Correctly log stack trace on the protobuf server



[geode] 01/01: add .gitattributes file

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a commit to branch feature/gitattributes
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 1d0b993fcb9b5e2c4e5e1e57f8daffc940d937da
Author: Dick Cavender 
AuthorDate: Mon Aug 7 14:57:05 2017 -0700

add .gitattributes file
---
 .gitattributes | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 000..6313b56
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto eol=lf



[geode] branch feature/gitattributes deleted (was 1d0b993)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/gitattributes
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 1d0b993  add .gitattributes file

This change permanently discards the following revisions:

 discard 1d0b993  add .gitattributes file



[geode] branch feature/gitattributes created (now 1d0b993)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/gitattributes
in repository https://gitbox.apache.org/repos/asf/geode.git.


  at 1d0b993  add .gitattributes file

This branch includes the following new commits:

 new 1d0b993  add .gitattributes file

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.




[geode] branch feature/GEODE-4439 deleted (was fc5a8be)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was fc5a8be  GEODE-4439 Refactor HandShake.java

This change permanently discards the following revisions:

 discard fc5a8be  GEODE-4439 Refactor HandShake.java
 discard 3a88381  fixing an NPE but there are more problems
 discard fbefe7d  wip - tests are failing
 discard 4cd5b90  checkpoint - readMessage refactoring
 discard ed20f214 GEODE-4439 Refactor HandShake.java



[geode] branch feature/GEODE-4131 deleted (was 6523e4b)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 6523e4b  add unit tests for fileUploader and rename parameters

This change permanently discards the following revisions:

 discard 6523e4b  add unit tests for fileUploader and rename parameters
 discard bda28e3  fix fileUploader deleteFile bug
 discard cbdb834  GEODE-4131: Clean up deletion of staged files
 discard aaa879b  GEODE-4131: Spotless changes
 discard e34fef8  GEODE-4131: Add permissions to FileUploaderMBean
 discard bae595a  GEODE-4131: Clean up staged files
 discard ebccb14  GEODE-4131: Always register UploaderMBean
 discard 64b7114  Merge branch 'develop' into deployJar
 discard 2f931ca  GEODE-4131: remove the uploaded file after the command is 
executed, and add more tests
 discard fefcc7a  GEODE-4131: remove ConverterUtil
 discard cc63152  GEODE-4131: Do not reference deployed jars as byte arrays 
anymore



[geode] branch feature/gitattributes deleted (was 1d0b993)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/gitattributes
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 1d0b993  add .gitattributes file

This change permanently discards the following revisions:

 discard 1d0b993  add .gitattributes file



[geode] branch feature/GEODE-3584 deleted (was 02e6330)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 02e6330  WIP: fix compilation errors

This change permanently discards the following revisions:

 discard 02e6330  WIP: fix compilation errors
 discard 0b86998  WIP: spotless and changed some javadocs to regular comments
 discard 0a18ad8  WIP: Corrected errors from the merge for redirect command 
option
 discard a7f0fd0  WIP: merge contributed pathc file and resolove conflicts



[geode] branch feature/GEM-883 deleted (was 213c7d9)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/GEM-883
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 213c7d9  GEM-883: double check if some code is necessary

This change permanently discards the following revisions:

 discard 213c7d9  GEM-883: double check if some code is necessary
 discard 87672fa  GEODE-3967: fix with isOld=false ifNew=false for the 3rd try
 discard c1fd7c6  GEODE-3967: reduce some log
 discard b206139  GEODE-3967: trace into basicPut
 discard 9554993  GEODE-3967: add trace for exception
 discard df66c91  GEODE-3967: add more trace arround doPutOrCreate



[geode] branch feature/GEODE-4987 deleted (was 7729d71)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 7729d71  GEODE-4987: Add rebalancing tests with colocated PRs and AEQ

This change permanently discards the following revisions:

 discard 7729d71  GEODE-4987: Add rebalancing tests with colocated PRs and AEQ



[geode] branch feature/GEODE-4997 deleted (was b3ac9a8)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was b3ac9a8  GEODE-4997 WIP Add info on cache loaders for inline caches

This change permanently discards the following revisions:

 discard b3ac9a8  GEODE-4997 WIP Add info on cache loaders for inline caches
 discard 9b5c43e  GEODE-4997: work in progress, document inline caching with 
Geode



[geode] branch feature/GEODE-2804 deleted (was 5c60b96)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 5c60b96   GEODE-2804 Caching the InetAddress for configured ip string

This change permanently discards the following revisions:

 discard 5c60b96   GEODE-2804 Caching the InetAddress for configured ip string
 discard d303e7c  Revert "GEODE-2804 Caching the InetAddress for configured ip 
string"
 discard 58afd68  GEODE-2804 Caching the InetAddress for configured ip string
 discard cf7274e  GEODE-3091: remove empty method
 discard b18571a  GEODE-3071: Pull config of docker volumes into top level 
script so that they can be overridden
 discard d4412a6  GEODE_3071: Add Apache license header
 discard 1f78fc4  Remove debug println
 discard 451bd42  GEODE-3071: Provide capability to parallelize distributedTests
 discard f808d3b  Update geode-book/README.md
 discard 15c32d9  GEODE-3092: fix specifiedDefaultValue for cacheLoader and 
cacheWriter
 discard 601b338  GEODE-2601: Updated based on feedback
 discard 04de174  GEODE-2601: Fixing banner being logged twice during locator 
startup.
 discard 6c330bf  GEODE-2601: Fixing banner being logged twice during locator 
startup (now only logs once if both locator and distributed systems are started)
 discard ebf9b02  GEODE-2854: GEODE REST API Docs Missing Authentication This 
closes #583
 discard 439f8d5  GEODE-3072: Ignore dunit test
 discard c7dc2b3  GEODE-3072: Ignore dunit test
 discard 39c9ca0  GEODE-2301 Doc note to deprecate Geode JTA trans mgr
 discard 3902ea0  GEODE-2632: consolidate different types of SecurityService
 discard 11d1165  GEODE-3072: Changed getMembershipId to use the client version
 discard b7bdbb0  GEODE-2301: Deprecate JTA transaction manager from Geode
 discard ccde33b  Revert "GEODE-3062: create new SecurityService after 
receiving cluster config"
 discard 12e15a9  GEODE-3070: Fix gemfire.jar to be geode-dependencies.jar
 discard d001baa  GEODE-3060: Introduce JUnit rule for testing the 
fully-assembled GFSH
 discard a0175b4  GEODE-2558: Upgrade Powermock version to fix failing tests
 discard 78dd36e  GEODE-2629: fix ConnectionJUnitTest use of Mockito 2.7.11
 discard 4121261  GEODE-2626: fix FastLoggerJUnitTest use of Mockito 2.7.11
 discard 7dcd775  GEODE-2628: fix StatisticsImplTest use of Mockito 2.7.11
 discard ecd04d0  GEODE-2622: Fix GMSMembershipManagerJUnitTest use of Mockito 
2.7.11
 discard 5d1d8fb  GEODE-2558: Upgrade mockito to 2.7.11 and powermock to 
1.7.0RC2
 discard 0934035  GEODE-3062: create new SecurityService after receiving 
cluster config
 discard 6310226  GEODE-2818: add aliases to the undeploy command
 discard ae5bf34  GEODE-2818: add alias to any command's options that involves 
"group", "member", "jar" and replace CliString variables with GROUP, MEMBER, 
JAR, etc.
 discard c2747ae  Resolve Eclipse/IntelliJ import order disagreement in style 
files.
 discard c3756ff  GEODE-2294: revert to avoid rest protocol change
 discard 2205cf3  GEODE-3068: fix alphabetic ordering
 discard 079a84a  Added change to change InetAddress when there is IOException



[geode] branch GEM-2043 deleted (was b8d04a3)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch GEM-2043
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was b8d04a3  WIP

This change permanently discards the following revisions:

 discard b8d04a3  WIP
 discard 5f448c8  wip
 discard b3ce658  wip
 discard 82e5b6a  WIP GEM-2043



[geode] branch feature/GEODE-4791 deleted (was 4984f4e)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 4984f4e  GEODE-4791: More gradle 4.8 changes to help with IntelliJ 
integration

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-5463 deleted (was 1fdb373)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 1fdb373  Debugging Windows failures

This change permanently discards the following revisions:

 discard 1fdb373  Debugging Windows failures



[geode] branch feature/GEODE-5212 deleted (was 82202eb)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 82202eb  Print env

This change permanently discards the following revisions:

 discard 82202eb  Print env
 discard 9928984  Testing converting classpaths to manifest jar for various 
launcher tests
 discard 79c539a  Run full integraion tests again
 discard e58e52b  remove references to TMPDIR and add debug flag
 discard 1ed2baf  leave java.io.tmpdir alone
 discard 84bdcaa  windows sucks
 discard 80bd8bd  quote path because of too long filenames
 discard 895300c  maybe powershell
 discard 5cf7db0  sleep during backup test se we can debug on the actual test 
worker
 discard 625f3f2  GEODE-5497: Add an incremental backup test to 
BackupIntegrationTest
 discard 6e800b6  more debugging
 discard 54b7c5f  use full path
 discard 5e595d7  Because Windows...
 discard b2d94f1  Does the restore.bat script really need cmd.exe?
 discard 59167bd  List directory contents
 discard 319ac30  Add debug output for BackupIntegrationTest
 discard 7899f20  Merge branch 'develop' into feature/GEODE-5212
 discard 74a6603  Added unit test job
 discard f53050d  use geode-ci as input
 discard 8f32985  use testCategory property to run GfshTest
 discard f447389  Added WindowsGfshDistributionTest
 discard 72f3713  updated JAVA_HOME path to 181
 discard 237c79e  run all integration tests
 discard 9d9a6dd  added -force to kill task
 discard 5090a5f  run a single integration test
 discard b71c31f  Now that we have two workers we can run parallely
 discard f81424d  Use vcap gitbash
 discard 2d68aff  Added a new pipeline for windows
 discard fb89326  added two jobs for windows
 discard ed2daec  dont run in parallel
 discard 802850e  run all tests
 discard 489a8be  Added aggregate for running tasks parallel
 discard 23481d2  git base doesnt seem to see PATH, so use full name
 discard f91eb5e  GEODE-5212: Add temporary geode-ci-windows resource
 discard 6d738f9  GEODE-5212: Trying to debug GCP auth failures on Windows
 discard 5f302db  GEODE-5212: Trying to debug GCP auth failures on Windows
 discard dc296bc  GEODE-5212: Debug why archive uploads are not working
 discard 0b077ce  GEODE-5212: Hackery to speed up test cycle - only run one test
 discard 27887ce  GEODE-5212: More PATH updates
 discard e4ca62e  GEODE-5212: Add python path for CI archive script
 discard 322f104  Added WindowsTest pipeline
 discard fd02602  Check JAVA_HOME bin for java version



[geode] branch feature/GEODE-4075 deleted (was 46abc78)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 46abc78  GEODE-4075 Add @Experimental to all public classes and add 
experimental text to gfsh commands help

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-5212-no-java deleted (was 16e399a)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/GEODE-5212-no-java
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 16e399a  Squashed commit of the following:

This change permanently discards the following revisions:

 discard 16e399a  Squashed commit of the following:



[geode] branch feature/GEM-1772 deleted (was 7c17f1c)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/GEM-1772
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 7c17f1c  GEM-1772: Added additional debugging

This change permanently discards the following revisions:

 discard 7c17f1c  GEM-1772: Added additional debugging
 discard 68e529e  GEM-1772: Added additional debugging
 discard 9157dd2  GEM-1772: Added additional debugging
 discard 9147b1e  GEM-1772: Added additional debugging
 discard 3e9a15d  GEM-1772: Added debugging



[geode] branch feature/windows-debug-integration-tests deleted (was 1ef138c)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/windows-debug-integration-tests
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 1ef138c  Ignore case in LocatorLauncher validateOnStart

This change permanently discards the following revisions:

 discard 1ef138c  Ignore case in LocatorLauncher validateOnStart
 discard 3375bac  Let ServerLauncher ignore comparing directory paths
 discard a7dcde1  added more debugs in ServerLauncher
 discard 399c5b4  added debug statements to print command
 discard 40c973b  Testing converting classpaths to manifest jar for various 
launcher tests



[geode] branch debug-alter-runtime deleted (was 5bc43a2)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch debug-alter-runtime
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 5bc43a2  GEODE-5530: Add geode-core project to 
distributedTestRuntimeOnly

This change permanently discards the following revisions:

 discard 5bc43a2  GEODE-5530: Add geode-core project to 
distributedTestRuntimeOnly
 discard be8a48f  Increase log-level to debug
 discard cbdada7  More debugging
 discard c22cff2  why is jetty not starting
 discard ce7c1d2  only run http tests
 discard 9ed0ab8  enabled logs



[geode] branch feature/GEODE-3991 deleted (was f24c10b)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was f24c10b  GEODE-3991 Add list region mapping command

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3556 deleted (was 6d32e28)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 6d32e28  GEODE-3556: Update gradle docker plugin to 0.5.4

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3799 deleted (was c36bbb0)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was c36bbb0  GEODE-3843 gfsh shutdown error message suggests non-existent 
option

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3082 deleted (was e7ca796)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was e7ca796  GEODE-3082 Integrated GenericProtocolServerConnection with 
ClientHealthMonitor.

This change permanently discards the following revisions:

 discard e7ca796  GEODE-3082 Integrated GenericProtocolServerConnection with 
ClientHealthMonitor.



[geode] branch feature/GEODE-3249b deleted (was c16b151)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was c16b151  spotlessApply

This change permanently discards the following revisions:

 discard c16b151  spotlessApply
 discard f8e7ddd  GEODE-3249: Validate internal client/server messages



[geode] branch GEODE-3801-backup-hardlinks-recommit deleted (was 81377bb)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch GEODE-3801-backup-hardlinks-recommit
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 81377bb  GEODE-3801: Use hardlinks for backup oplog files (#963)

This change permanently discards the following revisions:

 discard 81377bb  GEODE-3801: Use hardlinks for backup oplog files (#963)



[geode] branch feature/GEODE-2226-2 deleted (was 1efbf58)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 1efbf58  GEODE-2226: SessionReplicationIntegrationTests do not run on 
windows

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3587 deleted (was e57f142)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was e57f142  GEODE-3587: Enable publishing distribution zip

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3676 deleted (was dfd2a40)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was dfd2a40  GEODE-3620: check for null argument to prevent NPE

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch geode-3622 deleted (was 6c345cd)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch geode-3622
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 6c345cd  GEODE-2567: Add --if-exists to destroy disk-store (#1080)

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch whitelist_wip deleted (was 06ca7ea)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch whitelist_wip
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 06ca7ea  whitelist WIP

This change permanently discards the following revisions:

 discard 06ca7ea  whitelist WIP
 discard eda64dd  whitelist WIP
 discard 969ec5e  whitelist WIP
 discard 1b87b3e  whitelist WIP
 discard 0c63222  whitelist WIP
 discard 731ac2b  Whitelist: Work with older versions of Java 8
 discard 3329467  Adding an option to run tests with a different JVM
 discard a480931  whitelist WIP
 discard 026ae92  Adding configuration parameters to toggle whitelist behavior 
of serializable classes.
 discard 01886fb  whitelist wip
 discard f6b3b3c  whitelist WIP
 discard 69b5996  Whitelist WIP: Add services and serializable tests to modules.
 discard 9f0296a  work-in-progress branch for whitelisting classes that can be 
deserialized
 discard 5153465  work-in-progress branch for whitelisting classes that can be 
deserialized
 discard 13aec8e  work-in-progress branch for whitelisting classes that can be 
deserialized.
 discard c12ad36  work-in-progress branch for whitelisting classes that can be 
deserialized.



[geode] branch feature/GEODE-3423 deleted (was 0ab0ad4)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 0ab0ad4  GEODE-3423: Use openjdk:8 as the base

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch GEODE-3273 deleted (was b8dc595)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was b8dc595  GEODE-3701 Improve docs on hash index performance (#816)

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch GEODE-3237 deleted (was 24dc3a6)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 24dc3a6  GEODE-3760 uncaught exception in shunned member removal thread

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch GEODE-3715-javadocs deleted (was e228a48)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch GEODE-3715-javadocs
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was e228a48  GEODE-3715: improve javadocs of DistributedTest rules

This change permanently discards the following revisions:

 discard e228a48  GEODE-3715: improve javadocs of DistributedTest rules



[geode] branch feature/GEODE-3989 deleted (was 71ffd24)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 71ffd24  GEODE-3989 Add destroy region mapping command

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch sgo deleted (was 7c344c0)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch sgo
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 7c344c0  Merge branch 'feature/disk-store-doc' into develop

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-3249 deleted (was 5987dd0)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 5987dd0  Merge branch 'feature/GEODE-3249' of 
https://git-wip-us.apache.org/repos/asf/geode into feature/GEODE-3249

This change permanently discards the following revisions:

 discard 5987dd0  Merge branch 'feature/GEODE-3249' of 
https://git-wip-us.apache.org/repos/asf/geode into feature/GEODE-3249
 discard e18ec9f  spotlessApply
 discard c2efd80  GEODE-3249: internal messages should have credentials
 discard e7eaf1c  spotlessApply
 discard e0fbb3c  GEODE-3249: internal messages should have credentials
 discard b9f952f  Revert "reverted change to build.gradle in geode-old-versions"
 discard 25d63fa  reverted change to build.gradle in geode-old-versions
 discard 98ed606  GEODE_3249 Validate internal client/server messages
 discard a07d987  GEODE-3249
 discard 6c2ea4a  GEODE-3249: Validate internal client/server messages
 discard 376ce29  spotlessApply
 discard 6ee5771  GEODE-3249: internal messages should have credentials
 discard 2eca73e  spotlessApply
 discard 41e14dd  GEODE-3249: internal messages should have credentials
 discard 59b14db  Revert "reverted change to build.gradle in geode-old-versions"
 discard 2e1ccb5  reverted change to build.gradle in geode-old-versions
 discard 793b16f  GEODE_3249 Validate internal client/server messages
 discard 9e68875  GEODE-3249
 discard 1b03524  GEODE-3249: Validate internal client/server messages



[geode] branch feature/GEODE-2449 deleted (was 2fbdb0c)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 2fbdb0c  GEODE-2449. Don't expect moved Redis classes in core.

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch spike/lucene70 deleted (was 54bd8b8)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch spike/lucene70
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was 54bd8b8  Upgrade to lucene 7

This change permanently discards the following revisions:

 discard 54bd8b8  Upgrade to lucene 7



[geode] branch feature/GEODE-2616 deleted (was 6f22778)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 6f22778  spotlessApply changes

This change permanently discards the following revisions:

 discard 6f22778  spotlessApply changes
 discard 31b73a7  postDestroyRegion now removes itself from colocated parent 
colocatedByList Improved colocatedByList by getting rid of unneeded 
synchronization and making the field final. added unit test



[geode] branch feature/GEODE-2485 deleted (was 397b1b3)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 397b1b3  test now closes the cache it creates

This change permanently discards the following revisions:

 discard 397b1b3  test now closes the cache it creates
 discard 0aebf39  Revert "Revert "GEODE-2485: fix leak in tx suspend/resume""



[geode] branch feature/GEODE-2864 deleted (was b27df46)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was b27df46  remove meaningless tx warning message

This change permanently discards the following revisions:

 discard b27df46  remove meaningless tx warning message



[geode] branch feature/close_cache_aeq_enqueue deleted (was b7d0ec7)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

prhomberg pushed a change to branch feature/close_cache_aeq_enqueue
in repository https://gitbox.apache.org/repos/asf/geode.git.


 was b7d0ec7  Spotless changes

This change permanently discards the following revisions:

 discard b7d0ec7  Spotless changes
 discard 4c02fe3  Clean up disk dirs created by test.
 discard f84159a  Add dunit test for cache close while enqueuing event in AEQ. 
Rethrow CacheClosedException encountered while enqueuing event.
 discard 070494d  Starting a test of closing the cache while the AEQ is 
enqueuing



[geode] branch feature/GEODE-2402 deleted (was f4d96fd)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was f4d96fd  Write into the partitioned region in BucketTargetingMap

This change permanently discards the following revisions:

 discard f4d96fd  Write into the partitioned region in BucketTargetingMap



[geode] branch feature/GEODE-2801 deleted (was ab47b20)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was ab47b20  Merge remote-tracking branch 'origin/develop' into 
feature/GEODE-2801

This change permanently discards the following revisions:

 discard ab47b20  Merge remote-tracking branch 'origin/develop' into 
feature/GEODE-2801
 discard 232a61e  spotless
 discard b8e466e  added unit test
 discard 3070322  spotless
 discard 9e5b10b  GEODE-2801: change krfIds to be thread safe



[geode] branch GEODE-2290 deleted (was 5934e7e)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 5934e7e  GEODE-2290: Remove JarClassLoader

This change permanently discards the following revisions:

 discard 5934e7e  GEODE-2290: Remove JarClassLoader



[geode] branch feature/GEODE-2661 deleted (was 9887cfd)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 9887cfd  GEODE-2802 Tombstone version vector to contain only the 
members that generate the tombstone

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[geode] branch feature/GEODE-1969 deleted (was 40ff2a1)

2018-11-30 Thread prhomberg
This is an automated email from the ASF dual-hosted git repository.

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


 was 40ff2a1  Merge remote-tracking branch 'origin/develop' into 
feature/GEODE-1969

This change permanently discards the following revisions:

 discard 40ff2a1  Merge remote-tracking branch 'origin/develop' into 
feature/GEODE-1969
 discard 4d1ded8  oplog closed while writing to oplog with 
gemfire.syncWrites=true Moved the channel force call inside the sync block



  1   2   >