This is an automated email from the ASF dual-hosted git repository.
boglesby pushed a change to branch feature/GEM-1772
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard 311d712 GEM-1772: Added additional debugging
discard 0483f40 GEM-1772: Added additional debugging
discard 9435365 GEM-1772: Added additional debugging
discard 0b07ac3 GEM-1772: Added debugging
add 1380562 Introduces Serializable Consumer for Cluster junit (#2067)
add 982d332 GEODE-5285: Make PdxInstanceImplTest a unit test instead of
an integration test (#2064)
add f5eab20 GEODE-5330: only create one temp folder (#2068)
add 7d7a651 Fix test failure related to #2067
add ec0501d GEODE-5109: Ignoring the test
add 13087e2 GEODE-5333: Destroy failed connection in ConnectionConnector
(#2072)
add f2aeed4 User Guide: correct a CQ typo
add 908a5ef GEODE-5335: Do not resolve addresses when calling netstat and
lsof (#2070)
add 226e406 GEODE-4791: Fix intellij with gradle 4.8 by removing provided
configuration
add 880a9d6 Write a test that hangs without the fix for GEODE-3563.
(#2057)
add 87c0ec3 GEODE-4511: rework ClientAuthDUnitRule to illustrate when
authenticat… (#2077)
add af0ac3d GEODE-1655: CI Failure in
AutoConnectionSourceDUnitTest.testClientMembershipListener
add 6ae3cad GEODE-5346: Fix race in LauncherLifecycleCommandsDUnitTest
(#2080)
add d8538ee GEODE-1198 CI Failure:
DistributedSystemDUnitTest.testConflictingUDPPort
new 3e9a15d GEM-1772: Added debugging
new 9147b1e GEM-1772: Added additional debugging
new 9157dd2 GEM-1772: Added additional debugging
new 68e529e GEM-1772: Added additional debugging
new 7c17f1c GEM-1772: Added additional debugging
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (311d712)
\
N -- N -- N refs/heads/feature/GEM-1772 (7c17f1c)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 5 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:
extensions/session-testing-war/build.gradle | 3 +-
geode-assembly/build.gradle | 5 +-
.../LauncherLifecycleCommandsDUnitTest.java | 50 ++--
.../geode/connectors/jdbc/JdbcDistributedTest.java | 4 +-
geode-core/build.gradle | 10 +-
.../cache/client/internal/ConnectionConnector.java | 63 ++--
.../client/internal/ConnectionFactoryImpl.java | 23 +-
.../distributed/internal/DistributionAdvisor.java | 40 ++-
.../internal/cache/AbstractUpdateOperation.java | 5 +-
.../apache/geode/internal/cache/BucketRegion.java | 2 +-
.../internal/cache/DistributedCacheOperation.java | 19 +-
.../apache/geode/internal/cache/LocalRegion.java | 2 +-
.../geode/internal/cache/PartitionedRegion.java | 2 +-
.../geode/internal/cache/StateFlushOperation.java | 5 +-
.../org/apache/geode/internal/cache/TXState.java | 2 +-
.../internal/cache/tx/RemotePutAllMessage.java | 2 +-
.../java/org/apache/geode/internal/util/Hex.java | 16 +
.../internal/cli/functions/NetstatFunction.java | 14 +-
.../geode/pdx/internal/LonerTypeRegistration.java | 10 +-
.../geode/pdx/internal/PeerTypeRegistration.java | 2 +-
.../apache/geode/pdx/internal/TypeRegistry.java | 5 +
.../internal/AutoConnectionSourceDUnitTest.java | 19 +-
.../client/internal/ConnectionConnectorTest.java | 114 +++++++
.../distributed/DistributedSystemDUnitTest.java | 11 +-
.../geode/internal/tcp/TCPConduitDUnitTest.java | 128 ++++++++
.../management/internal/cli/NetstatDUnitTest.java | 149 ++++++++--
.../geode/pdx/internal/PdxInstanceImplTest.java | 329 +++++++++++++++++----
.../apache/geode/security/ClientAuthDUnitTest.java | 64 ++--
...tAuthorizationLegacyConfigurationDUnitTest.java | 14 +-
...aAuthorizationUsingLegacySecurityDUnitTest.java | 23 +-
...onUsingLegacySecurityWithFailoverDUnitTest.java | 13 +-
.../geode/test/dunit/DistributedTestUtils.java | 17 +-
...CallableIF.java => SerializableConsumerIF.java} | 9 +-
.../geode/test/dunit/rules/ClusterStartupRule.java | 48 +--
...tartupRuleCanSpecifyOlderVersionsDUnitTest.java | 8 +-
.../geode/test/junit/rules/GfshCommandRule.java | 38 ++-
geode-cq/build.gradle | 3 +-
.../commands/DescribeClientCommandDUnitTest.java | 5 +-
.../how_continuous_querying_works.html.md.erb | 3 +-
.../test/dunit/standalone/VersionManager.java | 0
.../dunit/standalone/VersionManagerJUnitTest.java | 0
.../lucene/LuceneQueriesReindexDUnitTest.java | 2 +
geode-old-versions/build.gradle | 9 +-
geode-protobuf/build.gradle | 3 +-
geode-pulse/build.gradle | 8 +-
geode-rebalancer/build.gradle | 6 +-
geode-wan/build.gradle | 3 +-
geode-web-api/build.gradle | 6 +-
geode-web/build.gradle | 11 +-
gradle/ide.gradle | 2 -
gradle/java.gradle | 15 +-
gradle/wrapper/gradle-wrapper.properties | 4 +-
52 files changed, 988 insertions(+), 360 deletions(-)
create mode 100644
geode-core/src/test/java/org/apache/geode/cache/client/internal/ConnectionConnectorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/tcp/TCPConduitDUnitTest.java
copy
geode-core/src/test/java/org/apache/geode/test/dunit/{SerializableCallableIF.java
=> SerializableConsumerIF.java} (80%)
rename {geode-old-versions =>
geode-junit}/src/main/java/org/apache/geode/test/dunit/standalone/VersionManager.java
(100%)
rename {geode-old-versions =>
geode-junit}/src/test/java/org/apache/geode/test/dunit/standalone/VersionManagerJUnitTest.java
(100%)