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

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


 discard 2805dfa  GEODE-4624: add a stats to trace total event removed by PQRM
     add b9bb961  GEODE-5081 ClientCacheFactory is missing the 
setPoolSubscriptionTimeoutMultiplier()
     add a881a79  GEODE-5070: Support --member option for describe & list jdbc 
connecto… (#1798)
     add 6d3771d  GEODE-4838: Throw IllegalStateException when registerinterest 
on PR in loner (#1614)
     add 779bc5c  GEODE-5104 - Output git SHA when updating passing reference 
file.
     add 0bc70ca  Merge pull request #1819 from smgoller/GEODE-5104
     add 08ec4af  GEODE-5085 authentication failure when auto-reconnecting
     add c303d01  GEODE-5043: Buffering protobuf output to avoid multiple 
packet sends (#1768)
     add 62fbcf0  GEODE-5106: when primary queue is drained, the PQRM maybe 
still on the way. (#1820)
     new 50dd0c3  GEODE-4624: add a stats to trace total event removed by PQRM

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   (2805dfa)
            \
             N -- N -- N   refs/heads/feature/GEODE-4624 (50dd0c3)

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

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

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ci/scripts/update-passing-ref.sh                   |  3 +
 .../internal/cli/DescribeConnectionCommand.java    | 36 ++++++++-
 .../DescribeConnectionFunction.java}               | 18 ++++-
 .../jdbc/internal/cli/DescribeMappingCommand.java  | 33 +++++++-
 .../DescribeMappingFunction.java}                  | 18 ++++-
 .../jdbc/internal/cli/ListConnectionCommand.java   | 34 +++++++-
 .../ListConnectionFunction.java}                   | 20 ++++-
 .../jdbc/internal/cli/ListMappingCommand.java      | 34 +++++++-
 .../ListMappingFunction.java}                      | 20 ++++-
 .../sanctioned-geode-connectors-serializables.txt  |  4 +
 .../cli/DescribeConnectionCommandDUnitTest.java    | 56 +++++++------
 .../cli/DescribeConnectionCommandTest.java         | 34 ++++++++
 ...st.java => DescribeConnectionFunctionTest.java} | 69 +++++++++-------
 .../cli/DescribeMappingCommandDUnitTest.java       | 50 ++++++++----
 .../internal/cli/DescribeMappingCommandTest.java   | 44 ++++++++++-
 ...nTest.java => DescribeMappingFunctionTest.java} | 69 +++++++++-------
 .../cli/ListConnectionCommandDUnitTest.java        | 21 +++++
 .../internal/cli/ListConnectionCommandTest.java    | 42 +++++++++-
 ...onTest.java => ListConnectionFunctionTest.java} | 90 +++++++++++++++------
 .../internal/cli/ListMappingCommandDUnitTest.java  | 24 ++++++
 .../jdbc/internal/cli/ListMappingCommandTest.java  | 48 ++++++++++++
 ...ctionTest.java => ListMappingFunctionTest.java} | 91 ++++++++++++++++------
 .../geode/cache/client/ClientCacheFactory.java     | 21 +++++
 .../org/apache/geode/cache/client/PoolFactory.java |  6 ++
 .../internal/DistributionConfigImpl.java           | 18 ++++-
 .../internal/InternalDistributedSystem.java        |  4 +-
 .../java/org/apache/geode/internal/Config.java     |  9 ++-
 .../tier/sockets/OriginalServerConnection.java     |  2 +
 .../tier/sockets/ProtobufServerConnection.java     | 13 +++-
 .../cache/tier/sockets/ServerConnection.java       | 11 +--
 .../tier/sockets/ServerConnectionFactory.java      |  2 +-
 .../tier/sockets/command/RegisterInterest61.java   |  7 ++
 .../cache/client/ClientCacheFactoryJUnitTest.java  | 86 +++++++++++---------
 .../cache30/ClientRegisterInterestDUnitTest.java   | 59 ++++++++++++++
 .../apache/geode/cache30/ReconnectDUnitTest.java   | 12 ++-
 .../cache/tier/sockets/CacheServerTestUtil.java    |  1 +
 .../dunit/internal/JUnit4DistributedTestCase.java  | 25 +++++-
 .../geode/experimental/driver/ProtobufChannel.java |  7 +-
 .../OutputCapturingServerConnectionTest.java       |  8 +-
 .../tier/sockets/ProtobufServerConnectionTest.java | 13 ++--
 .../parallel/ParallelWANConflationDUnitTest.java   | 19 ++++-
 41 files changed, 943 insertions(+), 238 deletions(-)
 copy 
geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/{HikariJdbcDataSourceFactory.java
 => cli/DescribeConnectionFunction.java} (62%)
 copy 
geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/{HikariJdbcDataSourceFactory.java
 => cli/DescribeMappingFunction.java} (62%)
 copy 
geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/{HikariJdbcDataSourceFactory.java
 => cli/ListConnectionFunction.java} (62%)
 copy 
geode-connectors/src/main/java/org/apache/geode/connectors/jdbc/internal/{HikariJdbcDataSourceFactory.java
 => cli/ListMappingFunction.java} (62%)
 copy 
geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/{DestroyConnectionFunctionTest.java
 => DescribeConnectionFunctionTest.java} (63%)
 copy 
geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/{DestroyConnectionFunctionTest.java
 => DescribeMappingFunctionTest.java} (63%)
 copy 
geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/{DestroyConnectionFunctionTest.java
 => ListConnectionFunctionTest.java} (52%)
 copy 
geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/{DestroyConnectionFunctionTest.java
 => ListMappingFunctionTest.java} (53%)

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to