[geode] branch support/1.14 updated: GEODE-9877: Use ServerSocket to create interfering port (#7180)

2021-12-09 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/support/1.14 by this push:
 new 9099e1f  GEODE-9877: Use ServerSocket to create interfering port 
(#7180)
9099e1f is described below

commit 9099e1fe70b02886ec7d65d21d8b9c0e60b94677
Author: Jens Deppe 
AuthorDate: Thu Dec 9 12:25:13 2021 -0800

GEODE-9877: Use ServerSocket to create interfering port (#7180)

- For some unknown reason `startupFailsGivenPortAlreadyInUse` started to
  fail after a seemingly innocuous Ubuntu base image bump. The problem
  may also have been triggered by arbitrary test ordering changes since
  the test did not fail on its own, but only in conjunction with running
  other tests beforehand.
  Specifically, the test was failing when binding the interfering port
  (bind exception). The port used was always in the TIME_WAIT state left
  from previous tests.
  Using a `ServerSocket`, instead of a regular socket, fixes the problem
  since it actually 'uses' the port and implicitly allows for port
  reuse.

- Use ServerSocket consistently. Rename test to be more appropriate

(cherry picked from commit 310c647da6ee4cc4a1eadc6df174d998e69afb31)
---
 .../internal/executor/GeodeRedisServerStartUpAcceptanceTest.java| 6 +++---
 .../org/apache/geode/redis/GeodeRedisServerStartupDUnitTest.java| 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/GeodeRedisServerStartUpAcceptanceTest.java
 
b/geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/GeodeRedisServerStartUpAcceptanceTest.java
index 385a5a7..7cb2659 100644
--- 
a/geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/GeodeRedisServerStartUpAcceptanceTest.java
+++ 
b/geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/GeodeRedisServerStartUpAcceptanceTest.java
@@ -19,7 +19,7 @@ import static org.assertj.core.api.Assertions.assertThat;
 
 import java.io.IOException;
 import java.net.InetSocketAddress;
-import java.net.Socket;
+import java.net.ServerSocket;
 
 import org.junit.Rule;
 import org.junit.Test;
@@ -47,7 +47,7 @@ public class GeodeRedisServerStartUpAcceptanceTest {
 "--compatible-with-redis-port", String.valueOf(port));
 GfshExecution execution;
 
-try (Socket interferingSocket = new Socket()) {
+try (ServerSocket interferingSocket = new ServerSocket()) {
   interferingSocket.bind(new InetSocketAddress("localhost", port));
   execution = GfshScript.of(startServerCommand)
   .expectFailure()
@@ -69,7 +69,7 @@ public class GeodeRedisServerStartUpAcceptanceTest {
 "--compatible-with-redis-port", String.valueOf(port));
 GfshExecution execution;
 
-try (Socket interferingSocket = new Socket()) {
+try (ServerSocket interferingSocket = new ServerSocket()) {
   interferingSocket.bind(new InetSocketAddress("0.0.0.0", port));
   execution = GfshScript.of(startServerCommand)
   .expectFailure()
diff --git 
a/geode-apis-compatible-with-redis/src/distributedTest/java/org/apache/geode/redis/GeodeRedisServerStartupDUnitTest.java
 
b/geode-apis-compatible-with-redis/src/distributedTest/java/org/apache/geode/redis/GeodeRedisServerStartupDUnitTest.java
index 135bded..2cae34e 100644
--- 
a/geode-apis-compatible-with-redis/src/distributedTest/java/org/apache/geode/redis/GeodeRedisServerStartupDUnitTest.java
+++ 
b/geode-apis-compatible-with-redis/src/distributedTest/java/org/apache/geode/redis/GeodeRedisServerStartupDUnitTest.java
@@ -24,7 +24,7 @@ import static org.assertj.core.api.Assertions.assertThat;
 import static org.assertj.core.api.Assertions.assertThatThrownBy;
 
 import java.net.InetSocketAddress;
-import java.net.Socket;
+import java.net.ServerSocket;
 
 import org.junit.ClassRule;
 import org.junit.Rule;
@@ -95,7 +95,7 @@ public class GeodeRedisServerStartupDUnitTest {
 int port = AvailablePortHelper.getRandomAvailableTCPPort();
 
 addIgnoredException("Could not start server compatible with Redis");
-try (Socket interferingSocket = new Socket()) {
+try (ServerSocket interferingSocket = new ServerSocket()) {
   interferingSocket.bind(new InetSocketAddress("localhost", port));
   assertThatThrownBy(() -> cluster.startServerVM(0, s -> s
   .withProperty(REDIS_PORT, "" + port)


[geode] branch develop updated (0e55693 -> d89fdf6)

2021-12-09 Thread burcham
This is an automated email from the ASF dual-hosted git repository.

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


from 0e55693  adjust timeouts and max_in_flight for best pipeline 
characteristics (#7183)
 add d89fdf6  GEODE-9822: Quorum Calculation Requires Majority (#7126)

No new revisions were added by this update.

Summary of changes:
 ...twork_partitioning_management_works.html.md.erb |  2 +-
 .../gms/membership/GMSJoinLeaveJUnitTest.java  | 92 ++
 .../membership/gms/membership/GMSJoinLeave.java| 36 +++--
 3 files changed, 107 insertions(+), 23 deletions(-)


[geode-examples] branch develop updated: GEODE-9814: Add geode-for-redis example (#110)

2021-12-09 Thread donalevans
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/develop by this push:
 new 380669b  GEODE-9814: Add geode-for-redis example (#110)
380669b is described below

commit 380669b16f8b0d40fd265be2e1fcb41f016166fe
Author: Donal Evans 
AuthorDate: Thu Dec 9 15:34:37 2021 -0800

GEODE-9814: Add geode-for-redis example (#110)

Authored-by: Donal Evans 
Co-authored-by: Dave Barnes 
---
 .gitignore |  4 +-
 README.md  |  4 +-
 build.gradle   |  2 +
 geodeForRedis/README.md| 88 ++
 geodeForRedis/build.gradle | 20 +
 geodeForRedis/scripts/start.gfsh   | 28 +++
 geodeForRedis/scripts/stop.gfsh| 17 +
 .../geode_examples/geodeForRedis/Example.java  | 69 +
 gradle/rat.gradle  |  2 +
 settings.gradle|  1 +
 10 files changed, 231 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index f34a209..b6156c8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,8 +18,8 @@ locator
 locator1
 l1
 server
-server1
-server2
+*server1
+*server2
 
 *.iml
 *.ipr
diff --git a/README.md b/README.md
index bc97af5..937dbbe 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ an integration with other projects.
 
 *  SpringBoot Application
 *  HTTP Session replication
-*  Redis
+*  [Geode for Redis](geodeForRedis/README.md)
 *  Memcached
 *  Spark Connector
 
@@ -118,7 +118,7 @@ an integration with other projects.
 
 Follow this approach to add a new example:
 
-* Create a subdirectory with a descriptive name like `cache-writer`
+* Create a subdirectory with a descriptive name like `cacheWriter`
 * Create a `README.md` file in the example subproject to walk the user through 
the tutorial
 * Create a Java class with a main method in the 
`org.apache.geode_examples.$name.Example` class
 * Create a cluster initialization script in `scripts/start.gfsh`
diff --git a/build.gradle b/build.gradle
index 77acecf..4feaa5d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -102,6 +102,8 @@ subprojects {
 delete 'server-ln-2'
 delete 'server-ny-1'
 delete 'server-ny-2'
+delete 'redisServer1'
+delete 'redisServer2'
 }
 }
 clean.finalizedBy cleanServer
diff --git a/geodeForRedis/README.md b/geodeForRedis/README.md
new file mode 100644
index 000..58c885a
--- /dev/null
+++ b/geodeForRedis/README.md
@@ -0,0 +1,88 @@
+
+
+# Geode for Redis Example using Jedis Client
+
+This example demonstrates simple operations on a Geode for Redis cluster using 
the Jedis Client.
+For more information on starting and configuring a Geode for Redis cluster, 
please refer to the 
+Geode documentation for [Geode for 
Redis](http://geode.apache.org/docs/guide/tools_modules/geode_for_redis.html).
+
+In this example, two servers are started with geode-for-redis enabled, some 
data is added to the 
+cluster using the Jedis client.
+
+This example assumes that Java and Geode are installed.
+
+## Set up the cluster 
+1. Set directory `geode-examples/geodeForRedis` to be the current working 
directory.
+Each step in this example specifies paths relative to that directory.
+
+2. Build the example
+
+$ ../gradlew build
+
+3. Run a script that starts a locator and two servers with geode-for-redis 
enabled.
+
+$ ../gradlew start
+
+## Run the example program
+Run the example to populate the cluster with some initial leaderboard data, 
increment 
+the scores associated with each member, then remove the lowest scoring member, 
printing the
+contents of the leaderboard at each step.
+
+$ ../gradlew run
+
+## Optionally use the redis-cli to issue additional commands
+
+1. If you do not have `redis-cli` installed, follow the "Installing Redis" 
instructions 
+at: https://redis.io/topics/quickstart
+
+2. Start the `redis-cli` in cluster mode, specifying the port used to start 
the geode-for-redis 
+server:
+
+$ redis-cli -c -p 6379
+
+3. Experiment with other commands:
+
+$ set stringKey aString
+OK
+
+$ get stringKey
+"aString"
+
+$ append stringKey WithAppendedData
+(integer) 23
+
+$ get stringKey
+"aStringWithAppendedData"
+
+$ del stringKey
+(integer) 1
+
+$ get stringKey
+(nil)
+
+Other supported commands can be listed using the `COMMAND` command.
+
+## Shut down the cluster and (optionally) clean up the directory
+1. Shut down the cluster:
+
+$ ../gradlew stop
+
+2. If desired, clean up the generated 

[geode] branch develop updated (310c647 -> 0e55693)

2021-12-09 Thread onichols
This is an automated email from the ASF dual-hosted git repository.

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


from 310c647  GEODE-9877: Use ServerSocket to create interfering port 
(#7180)
 add 0e55693  adjust timeouts and max_in_flight for best pipeline 
characteristics (#7183)

No new revisions were added by this update.

Summary of changes:
 ci/pipelines/shared/jinja.variables.yml | 38 -
 1 file changed, 19 insertions(+), 19 deletions(-)


[geode] branch develop updated (3b133c3 -> 310c647)

2021-12-09 Thread jensdeppe
This is an automated email from the ASF dual-hosted git repository.

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


from 3b133c3  GEODE-9882: User Guide, Micrometer section, fix product_name 
typo (#7181)
 add 310c647  GEODE-9877: Use ServerSocket to create interfering port 
(#7180)

No new revisions were added by this update.

Summary of changes:
 ...pDUnitTest.java => GeodeRedisServerStartupAcceptanceTest.java} | 7 ---
 ...t.java => GeodeRedisServerStartupUsingGfshAcceptanceTest.java} | 8 
 2 files changed, 8 insertions(+), 7 deletions(-)
 rename 
geode-for-redis/src/acceptanceTest/java/org/apache/geode/redis/{GeodeRedisServerStartupDUnitTest.java
 => GeodeRedisServerStartupAcceptanceTest.java} (98%)
 rename 
geode-for-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/commands/executor/{GeodeRedisServerStartUpAcceptanceTest.java
 => GeodeRedisServerStartupUsingGfshAcceptanceTest.java} (93%)


[geode-examples] branch feature/GEODE-9814-redis-example updated (cdef9dc -> 8edd765)

2021-12-09 Thread donalevans
This is an automated email from the ASF dual-hosted git repository.

donalevans pushed a change to branch feature/GEODE-9814-redis-example
in repository https://gitbox.apache.org/repos/asf/geode-examples.git.


from cdef9dc  Update README.md
 add 8edd765  Minor README changes, specify redundancy level in start.gfsh

No new revisions were added by this update.

Summary of changes:
 README.md   |  2 +-
 geodeForRedis/README.md |  2 ++
 geodeForRedis/scripts/start.gfsh| 13 +++--
 .../org/apache/geode_examples/geodeForRedis/Example.java|  2 +-
 4 files changed, 15 insertions(+), 4 deletions(-)


[geode] branch support/1.14 updated: GEODE-9882: User Guide, Micrometer section, fix product_name typo (#7181)

2021-12-09 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/support/1.14 by this push:
 new 6b0413c  GEODE-9882: User Guide, Micrometer section, fix product_name 
typo (#7181)
6b0413c is described below

commit 6b0413ccdf22d216f9f8d855b6159ecaff29c1ce
Author: Dave Barnes 
AuthorDate: Thu Dec 9 10:58:53 2021 -0800

GEODE-9882: User Guide, Micrometer section, fix product_name typo (#7181)
---
 geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb 
b/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
index 5d0bc00..0b272df 100644
--- a/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
+++ b/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
@@ -28,7 +28,7 @@ Micrometer meters are similar to <%=vars.product_name%> 
statistics in that they
 - A gauge is a numerical value that can go up or down.
 - A timer is a counter combined with an ever growing summary of the time each 
thing being counted has taken to finish.
 
-There are other types of meters available in Micrometer, but they are not 
currently being used in <%vars.product_name%>.
+There are other types of meters available in Micrometer, but they are not 
currently being used in <%=vars.product_name%>.
 
 Every meter in Micrometer has the following attributes, but may also have more 
than these depending on the meter type:
 


[geode] branch support/1.13 updated: GEODE-9882: User Guide, Micrometer section, fix product_name typo (#7181)

2021-12-09 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/support/1.13 by this push:
 new baacba1  GEODE-9882: User Guide, Micrometer section, fix product_name 
typo (#7181)
baacba1 is described below

commit baacba121f98dcc860bdb954550e6e01c4d9e6e4
Author: Dave Barnes 
AuthorDate: Thu Dec 9 10:58:53 2021 -0800

GEODE-9882: User Guide, Micrometer section, fix product_name typo (#7181)
---
 geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb 
b/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
index 5d0bc00..0b272df 100644
--- a/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
+++ b/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
@@ -28,7 +28,7 @@ Micrometer meters are similar to <%=vars.product_name%> 
statistics in that they
 - A gauge is a numerical value that can go up or down.
 - A timer is a counter combined with an ever growing summary of the time each 
thing being counted has taken to finish.
 
-There are other types of meters available in Micrometer, but they are not 
currently being used in <%vars.product_name%>.
+There are other types of meters available in Micrometer, but they are not 
currently being used in <%=vars.product_name%>.
 
 Every meter in Micrometer has the following attributes, but may also have more 
than these depending on the meter type:
 


[geode] branch support/1.12 updated: GEODE-9882: User Guide, Micrometer section, fix product_name typo (#7181)

2021-12-09 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/support/1.12 by this push:
 new 4746516  GEODE-9882: User Guide, Micrometer section, fix product_name 
typo (#7181)
4746516 is described below

commit 47465165256e076112cfcaaadeb7aa365cb1b29d
Author: Dave Barnes 
AuthorDate: Thu Dec 9 10:58:53 2021 -0800

GEODE-9882: User Guide, Micrometer section, fix product_name typo (#7181)
---
 geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb 
b/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
index 5d0bc00..0b272df 100644
--- a/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
+++ b/geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb
@@ -28,7 +28,7 @@ Micrometer meters are similar to <%=vars.product_name%> 
statistics in that they
 - A gauge is a numerical value that can go up or down.
 - A timer is a counter combined with an ever growing summary of the time each 
thing being counted has taken to finish.
 
-There are other types of meters available in Micrometer, but they are not 
currently being used in <%vars.product_name%>.
+There are other types of meters available in Micrometer, but they are not 
currently being used in <%=vars.product_name%>.
 
 Every meter in Micrometer has the following attributes, but may also have more 
than these depending on the meter type:
 


[geode] branch develop updated (324ed89 -> 3b133c3)

2021-12-09 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


from 324ed89  GEODE-9854: Orphaned .drf file causing memory leak (#7145)
 add 3b133c3  GEODE-9882: User Guide, Micrometer section, fix product_name 
typo (#7181)

No new revisions were added by this update.

Summary of changes:
 geode-docs/tools_modules/micrometer/micrometer-meters.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[geode] branch develop updated (c65f048 -> 324ed89)

2021-12-09 Thread dschneider
This is an automated email from the ASF dual-hosted git repository.

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


from c65f048  GEODE-9871: Improve Radish test for network KB/s verification 
(#7170)
 add 324ed89  GEODE-9854: Orphaned .drf file causing memory leak (#7145)

No new revisions were added by this update.

Summary of changes:
 ...ObjectThatAreNoLongerNeededIntegrationTest.java | 407 +
 .../org/apache/geode/internal/cache/Oplog.java |  70 +++-
 2 files changed, 457 insertions(+), 20 deletions(-)
 create mode 100644 
geode-core/src/integrationTest/java/org/apache/geode/internal/cache/DiskRegionCompactorClearsObjectThatAreNoLongerNeededIntegrationTest.java


[geode] branch develop updated (db64b49 -> c65f048)

2021-12-09 Thread jensdeppe
This is an automated email from the ASF dual-hosted git repository.

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


from db64b49  GEODE-9758: Move SanctionedSerializables to filter package 
(#7165)
 add c65f048  GEODE-9871: Improve Radish test for network KB/s verification 
(#7170)

No new revisions were added by this update.

Summary of changes:
 .../AbstractRedisInfoStatsIntegrationTest.java | 68 +-
 1 file changed, 28 insertions(+), 40 deletions(-)


[geode] branch develop updated (68b9080 -> db64b49)

2021-12-09 Thread klund
This is an automated email from the ASF dual-hosted git repository.

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


from 68b9080  GEODE-9872: Make test framework code assign ports (#7176)
 add db64b49  GEODE-9758: Move SanctionedSerializables to filter package 
(#7165)

No new revisions were added by this update.

Summary of changes:
 geode-common/build.gradle  |  3 +-
 ...ctionedSerializablesServiceIntegrationTest.java | 40 +
 .../ConnectorsSanctionedSerializablesService.java  |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 geode-core/build.gradle|  2 +
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 .../CoreSanctionedSerializablesService.java|  2 +-
 .../geode/internal/InternalDataSerializer.java |  4 +-
 .../internal/ObjectInputStreamFilterWrapper.java   |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 .../internal/CQSanctionedSerializablesService.java |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 .../DUnitSanctionedSerializablesService.java   |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 40 +
 .../RedisSanctionedSerializablesService.java   |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 56 +
 .../GfshSanctionedSerializablesService.java|  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 ...nedSerializablesServiceIntegrationTestBase.java |  4 +-
 .../categories/SanctionedSerializablesTest.java| 14 ++--
 .../JUnitSanctionedSerializablesService.java   |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 .../LuceneSanctionedSerializablesService.java  |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 40 +
 .../ManagementSanctionedSerializablesService.java  |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 .../MembershipDependenciesJUnitTest.java   |  2 +-
 ...ctionedSerializablesServiceIntegrationTest.java | 40 +
 .../MembershipSanctionedSerializablesService.java  |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 41 --
 .../MemcachedSanctionedSerializablesService.java   |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 geode-serialization/build.gradle   |  4 +
 ...ctionedSerializablesServiceIntegrationTest.java | 40 +
 .../apache/geode/codeAnalysis/excludedClasses.txt  |  0
 ...erializationSanctionedSerializablesService.java |  2 +
 .../{ => filter}/SanctionedSerializables.java  | 37 -
 .../SanctionedSerializablesService.java|  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...est.java => SerializationDependenciesTest.java} | 20 ++---
 .../filter/SanctionedSerializablesTest.java| 95 ++
 .../src/test/resources/expected-pom.xml| 10 +++
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 .../WANSanctionedSerializablesService.java |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 ...ctionedSerializablesServiceIntegrationTest.java | 39 +
 .../WebApiSanctionedSerializablesService.java  |  2 +-
 ...lization.filter.SanctionedSerializablesService} |  0
 56 files changed, 729 insertions(+), 68 deletions(-)
 create mode 100644 
geode-connectors/src/integrationTest/java/org/apache/geode/connectors/jdbc/internal/ConnectorsSanctionedSerializablesServiceIntegrationTest.java
 rename 
geode-connectors/src/main/resources/META-INF/services/{org.apache.geode.internal.serialization.SanctionedSerializablesService
 => 
org.apache.geode.internal.serialization.filter.SanctionedSerializablesService} 
(100%)
 create mode 100644 
geode-core/src/integrationTest/java/org/apache/geode/internal/CoreSanctionedSerializablesServiceIntegrationTest.java
 rename 
geode-core/src/main/resources/META-INF/services/{org.apache.geode.internal.serialization.SanctionedSerializablesService
 => 
org.apache.geode.internal.serialization.filter.SanctionedSerializablesService} 
(100%)
 create mode 100644 
geode-cq/src/integrationTest/java/org/apache/geode/cache/query/cq/internal/CQSanctionedSerializablesServiceIntegrationTest.java
 rename 
geode-cq/src/main/resources/META-INF/services/{org.apache.geode.internal.serialization.SanctionedSerializablesService
 => 

[geode] branch develop updated (d02d95a -> 68b9080)

2021-12-09 Thread dhemery
This is an automated email from the ASF dual-hosted git repository.

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


from d02d95a  GEODE-9870: Avoid Radish MOVED error during flushAll in 
AuthWhileServersRestartDUnitTest (#7171)
 add 68b9080  GEODE-9872: Make test framework code assign ports (#7176)

No new revisions were added by this update.

Summary of changes:
 .../apache/geode/test/dunit/internal/DUnitLauncher.java| 14 --
 .../apache/geode/test/dunit/rules/ClusterStartupRule.java  | 12 ++--
 .../internal/sanctioned-geode-dunit-serializables.txt  |  2 +-
 3 files changed, 19 insertions(+), 9 deletions(-)


[geode] branch develop updated (1e66771 -> 20c4177)

2021-12-09 Thread dhemery
This is an automated email from the ASF dual-hosted git repository.

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


from 1e66771  GEODE-9808: Throw appropriate exception in 
AutoConnectionSourceImpl (#7143)
 add 20c4177  GEODE-9622: Make failover test not use ephemeral port (#7178)

No new revisions were added by this update.

Summary of changes:
 ...nsactionFailoverWithMixedVersionServersDistributedTest.java | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)