[geode] branch develop updated (835d7ae -> 7c71c22)

2019-05-01 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 835d7ae  GEODE-6724 split brain formed on concurrent locator startup
 add 7c71c22  GEODE-6721: use ip for bind-address instead of the canonical 
name of … (#3521)

No new revisions were added by this update.

Summary of changes:
 .../cli/commands/StartLocatorCommandIntegrationTest.java  | 15 +--
 .../internal/cli/commands/StartLocatorCommand.java| 12 +---
 2 files changed, 22 insertions(+), 5 deletions(-)



[geode-site] branch asf-site updated: Update the bullet point regarding available clients to include C++ and C# .NET as currently available. No longer promise Node.js

2019-05-01 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new a823fea  Update the bullet point regarding available clients to 
include C++ and C# .NET as currently available. No longer promise Node.js
a823fea is described below

commit a823fea2bba1372e4eabeae634fe1fe28bd28bc0
Author: Dave Barnes 
AuthorDate: Wed May 1 15:10:03 2019 -0700

Update the bullet point regarding available clients to include C++ and C# 
.NET as currently available. No longer promise Node.js
---
 index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html
index e146da0..f92e9ae 100644
--- a/index.html
+++ b/index.html
@@ -190,7 +190,7 @@ under the License. -->
   
   
   Clients
-  Clients are available for Java. (C++, C# .NET and Node.js 
coming soon.) A REST API is available for all other languages.
+  Clients are available for Java, C++, and C# .NET. A REST API 
is available for all other languages.
   
 
   



[geode-site] branch master updated: Update the bullet point regarding available clients to include C++ and C# .NET as currently available. No longer promise Node.js.

2019-05-01 Thread dbarnes
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 5c9295b  Update the bullet point regarding available clients to 
include C++ and C# .NET as currently available. No longer promise Node.js.
5c9295b is described below

commit 5c9295bed5111b055c3acb5ff37cf7bc473befc8
Author: Dave Barnes 
AuthorDate: Wed May 1 15:07:16 2019 -0700

Update the bullet point regarding available clients to include C++ and C# 
.NET as currently available. No longer promise Node.js.
---
 website/content/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/content/index.html b/website/content/index.html
index e835ae2..11703e2 100644
--- a/website/content/index.html
+++ b/website/content/index.html
@@ -113,7 +113,7 @@ under the License. -->
   
   
   Clients
-  Clients are available for Java. (C++, C# .NET and Node.js 
coming soon.) A REST API is available for all other languages.
+  Clients are available for Java, C++, and C# .NET. A REST API 
is available for all other languages.
   
 
   



[geode] branch feature/GEODE-6724 deleted (was bd90364)

2019-05-01 Thread bschuchardt
This is an automated email from the ASF dual-hosted git repository.

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


 was bd90364  fixing unit test failures

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-native] branch develop updated: Fix RHEL-7 test Packer image - zerodisk.sh was removed in the recent fix to support RHEL6 - base image JSON was updated, but not the test image version

2019-05-01 Thread bbender
This is an automated email from the ASF dual-hosted git repository.

bbender 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 07c3b59  Fix RHEL-7 test Packer image - zerodisk.sh was removed in the 
recent fix to support RHEL6 - base image JSON was updated, but not the test 
image version
07c3b59 is described below

commit 07c3b59119fd7cd564e998b844e414a3bb6c3a8d
Author: Blake Bender 
AuthorDate: Wed May 1 11:11:09 2019 -0700

Fix RHEL-7 test Packer image
- zerodisk.sh was removed in the recent fix to support RHEL6
- base image JSON was updated, but not the test image version
---
 packer/test-rhel-7.json | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/packer/test-rhel-7.json b/packer/test-rhel-7.json
index 7ca6705..2b16e5d 100644
--- a/packer/test-rhel-7.json
+++ b/packer/test-rhel-7.json
@@ -90,9 +90,8 @@
   "type":"shell",
   "execute_command":"{{.Vars}} sudo -E -S bash '{{.Path}}'",
   "scripts":[
-"rhel/cleanup.sh",
-"rhel/zerodisk.sh"
+"rhel/cleanup.sh"
   ]
 }
   ]
-}
\ No newline at end of file
+}



[geode] branch develop updated (8c2c9c8 -> 30c2340)

2019-05-01 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 8c2c9c8  GEODE-6687: replace ByteArrayInputStream+DataInputStream with 
ByteArrayDataInput
 add 30c2340  GEODE-6702: optimize equals by not calling compareTo (#3524)

No new revisions were added by this update.

Summary of changes:
 .../membership/InternalDistributedMember.java  |  57 ++-
 .../membership/InternalDistributedMemberTest.java  | 183 +
 2 files changed, 239 insertions(+), 1 deletion(-)
 create mode 100644 
geode-core/src/test/java/org/apache/geode/distributed/internal/membership/InternalDistributedMemberTest.java



[geode] branch develop updated (1603ea0 -> 8c2c9c8)

2019-05-01 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 1603ea0  GEODE-6626: Separate CacheServer and GatewayReceiver
 add 8c2c9c8  GEODE-6687: replace ByteArrayInputStream+DataInputStream with 
ByteArrayDataInput

No new revisions were added by this update.

Summary of changes:
 .../org/apache/geode/cache/client/internal/AbstractOp.java  |  5 ++---
 .../geode/cache/client/internal/AuthenticateUserOp.java |  5 ++---
 .../cache/client/internal/ClientSideHandshakeImpl.java  |  8 ++--
 .../java/org/apache/geode/cache/client/internal/PutOp.java  |  6 ++
 .../java/org/apache/geode/cache/wan/EventSequenceID.java|  5 ++---
 .../java/org/apache/geode/internal/ByteArrayDataInput.java  |  8 
 .../org/apache/geode/internal/cache/EntryEventImpl.java |  4 +---
 .../main/java/org/apache/geode/internal/cache/EventID.java  | 12 +---
 .../org/apache/geode/internal/cache/FilterRoutingInfo.java  | 13 ++---
 .../apache/geode/internal/cache/ha/ThreadIdentifier.java|  5 ++---
 .../apache/geode/internal/cache/tier/sockets/AuthIds.java   |  6 +++---
 .../geode/internal/cache/tier/sockets/CacheClientProxy.java |  5 ++---
 .../internal/cache/tier/sockets/CacheClientUpdater.java |  5 ++---
 .../cache/tier/sockets/ClientProxyMembershipID.java |  9 +++--
 .../cache/tier/sockets/ClientUpdateMessageImpl.java |  5 ++---
 .../geode/internal/cache/tier/sockets/EncryptorImpl.java|  8 +++-
 .../geode/internal/cache/tier/sockets/ServerConnection.java |  6 ++
 .../java/org/apache/geode/internal/offheap/DataType.java|  5 ++---
 18 files changed, 47 insertions(+), 73 deletions(-)



[geode] branch develop updated (3e30fbf -> 1603ea0)

2019-05-01 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 3e30fbf  GEODE-6727 CI failure: 
AcceptorImplClientQueueDistributedTest. 
clientSubscriptionQueueInitializationShouldNotBlockNewConnections
 add 014e0e7  GEODE-6626: Fix getStartPort in GatewayReceiverMBeanBridge
 add 459911d  GEODE-6626: Remove unused method from GatewayReceiverMBean
 add f096248  GEODE-6626: Cleanup GemFireCacheImpl use of GatewayReceiver
 add 566c82d  GEODE-6626: Cleanup GatewayReceiverImpl and its unit test
 add 27bf663  GEODE-6626: Expand GatewayReceiverFactoryImplTest
 add 73f6f85  GEODE-6626: Cleanup ServerConnection warnings
 add 8505247  GEODE-6626: Cleanup AcceptorImpl warnings
 add 1603ea0  GEODE-6626: Separate CacheServer and GatewayReceiver

No new revisions were added by this update.

Summary of changes:
 .../AcceptorImplClientQueueDistributedTest.java|   2 +-
 .../cache/tier/sockets/AcceptorImplDUnitTest.java  |   6 +-
 ...ientServerConnectDisconnectDistributedTest.java |   4 +-
 .../tier/sockets/DurableClientStatsDUnitTest.java  |   5 +-
 .../cache/ServerBuilderIntegrationTest.java| 114 
 .../tier/sockets/AcceptorImplIntegrationTest.java  | 135 
 .../cache/tier/sockets/AcceptorImplJUnitTest.java  | 145 
 .../sockets/ServerConnectionIntegrationTest.java   | 115 ++--
 ...t.java => CacheServerStatsIntegrationTest.java} |   7 +-
 ...va => GatewayReceiverStatsIntegrationTest.java} |  67 +-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |   2 +
 .../apache/geode/cache/wan/GatewayReceiver.java|   3 -
 .../admin/ClientHealthMonitoringRegion.java|  11 +-
 .../internal/admin/remote/RemoteBridgeServer.java  |  62 +-
 .../geode/internal/cache/AbstractCacheServer.java  |   8 +-
 .../geode/internal/cache/CacheServerImpl.java  | 200 --
 .../geode/internal/cache/GemFireCacheImpl.java | 166 +++--
 .../apache/geode/internal/cache/InternalCache.java |   6 +-
 .../cache/InternalCacheForClientAccess.java|  11 +-
 .../geode/internal/cache/InternalCacheServer.java  |  32 +
 .../apache/geode/internal/cache/ServerBuilder.java | 170 +
 ...InternalCacheServer.java => ServerFactory.java} |  13 +-
 .../apache/geode/internal/cache/tier/Acceptor.java |  46 +-
 .../cache/tier/InternalClientMembership.java   |  43 +-
 .../OverflowAttributes.java}   |  22 +-
 .../cache/tier/sockets/AcceptorBuilder.java| 397 +++
 .../sockets/AcceptorFactory.java}  |  16 +-
 .../internal/cache/tier/sockets/AcceptorImpl.java  | 742 +++--
 .../cache/tier/sockets/CacheClientNotifier.java| 692 +--
 .../cache/tier/sockets/CacheServerStats.java   |   5 +-
 .../cache/tier/sockets/ClientHealthMonitor.java|  22 +-
 .../tier/sockets/OriginalServerConnection.java |  35 +-
 .../tier/sockets/ProtobufServerConnection.java |  44 +-
 .../cache/tier/sockets/ServerConnection.java   | 262 
 .../tier/sockets/ServerConnectionFactory.java  |  49 +-
 .../sockets/command/GatewayReceiverCommand.java| 179 ++---
 .../internal/cache/wan/GatewayReceiverStats.java   |   5 +-
 .../internal/cache/xmlcache/CacheCreation.java |  18 +-
 .../cache/xmlcache/CacheServerCreation.java|  58 ++
 .../cache/xmlcache/GatewayReceiverCreation.java|  12 +-
 .../internal/beans/CacheServerBridge.java  |   7 +-
 .../internal/beans/GatewayReceiverMBean.java   |   4 -
 .../internal/beans/GatewayReceiverMBeanBridge.java | 134 ++--
 .../management/internal/beans/ServerBridge.java|   6 +-
 .../cli/functions/ContinuousQueryFunction.java |  10 +-
 .../sanctioned-geode-core-serializables.txt|   1 -
 .../geode/internal/cache/CacheServerImplTest.java  | 198 ++
 .../geode/internal/cache/GemFireCacheImplTest.java | 217 +-
 .../geode/internal/cache/ServerBuilderTest.java| 146 
 .../cache/tier/sockets/AcceptorBuilderTest.java| 379 +++
 .../cache/tier/sockets/AcceptorImplTest.java   | 120 
 .../cache/tier/sockets/CacheServerUtils.java   |  55 --
 .../tier/sockets/ServerConnectionFactoryTest.java  | 119 ++--
 .../cache/tier/sockets/ServerConnectionTest.java   | 100 ++-
 .../beans/GatewayReceiverMBeanBridgeTest.java  |  53 ++
 .../RollingUpgrade2DUnitTestBase.java  |  15 +-
 .../cache/query/cq/internal/command/ExecuteCQ.java |   4 +-
 .../query/cq/internal/command/ExecuteCQ61.java |   4 +-
 .../query/cq/internal/command/GetDurableCQs.java   |   4 +-
 ...st.java => CacheConnectionIntegrationTest.java} |  87 +--
 ...java => CacheMaxConnectionIntegrationTest.java} |  67 +-
 .../OutputCapturingServerConnectionTest.java   |  88 ++-
 .../tier/sockets/ProtobufServerConnectionTest.java | 170 ++---
 .../cache/wan/CacheClientNotifierDUnitTest.java|   9 +-
 

[geode-native] branch develop updated: GEODE-6624: Remove TestConfig.cpp since it is empty (#482)

2019-05-01 Thread bbender
This is an automated email from the ASF dual-hosted git repository.

bbender 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 afeb17d  GEODE-6624: Remove TestConfig.cpp since it is empty (#482)
afeb17d is described below

commit afeb17dc33a46429911c4a031c7e1b1455e3f5f8
Author: M. Oleske 
AuthorDate: Wed May 1 07:52:56 2019 -0700

GEODE-6624: Remove TestConfig.cpp since it is empty (#482)

- File was inadvertently added in the original PR for this ticket

Authored-by: Michael Oleske 
---
 cppcache/integration/framework/TestConfig.cpp | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/cppcache/integration/framework/TestConfig.cpp 
b/cppcache/integration/framework/TestConfig.cpp
deleted file mode 100644
index e69de29..000