You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2017/11/14 21:53:43 UTC

[geode] branch feature/GEODE-3940 updated (807dd93 -> 59b43c9)

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

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


    from 807dd93  updated sanctionedDataSerializables to deal with new backup names
     add 36a1165  Revert "GEODE-3592: remove getAnyInstance call (#1026)"
     add 576bf71  GEODE-3539: rename GfshShellConnectionRule to GfshCommandRule (#1051)
     add abb39cf  GEODE-3970: Adjust default Travis _JAVA_OPTIONS (#1049)
     add bd523c3  GEODE-3951: PULSE Logout exception when using the defaults. (#1041)
     add 141c793  GEODE-2565: add if-exists option to DestoryGatewaySenderCommand (#1048)
     add ae03b84  GEODE-3973: have the cluster configuration start synchronously when starting a locator (#1050)
     add 9ebc4f7  Fix for GEODE-3898: Defined Indexes are not Persisted in Cluster Configuration. (#1022)
     add 1b985b0  GEODE-3898: fix merge conflict
     add 69143c1  GEODE-3961: Refactor ShowMetricsCommand to handle --categories uniformly
     add 7fae1a1  GEODE-3961: Correct test after bad rebase.
     new 59b43c9  Merge remote-tracking branch 'origin/develop' into feature/GEODE-3940

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:
 .travis.yml                                        |    4 +
 .../session/tests/TomcatClientServerTest.java      |    4 +-
 .../TomcatSessionBackwardsCompatibilityTest.java   |    4 +-
 .../distributed/internal/InternalLocator.java      |   80 +-
 .../geode/management/internal/cli/GfshParser.java  |    2 +-
 .../cli/commands/CreateDefinedIndexesCommand.java  |   27 +-
 .../cli/commands/DestroyGatewaySenderCommand.java  |   57 +-
 .../internal/cli/commands/GfshCommand.java         |    5 +
 .../internal/cli/commands/ShowMetricsCommand.java  | 1456 ++++++++------------
 .../cli/commands/ShowMetricsInterceptor.java       |  107 ++
 .../internal/cli/functions/CliFunctionResult.java  |   14 +
 .../functions/CreateDefinedIndexesFunction.java    |   83 +-
 .../functions/GatewaySenderDestroyFunction.java    |   58 +-
 .../GatewaySenderDestroyFunctionArgs.java          |    8 +-
 .../management/internal/cli/i18n/CliStrings.java   |    7 +-
 .../geode/internal/cache/CommitFunction.java       |    3 +-
 .../ExtensionClusterConfigurationDUnitTest.java    |    4 +-
 .../geode/internal/cache/ha/Bug48571DUnitTest.java |   96 +-
 .../management/internal/cli/CliUtilDUnitTest.java  |    4 +-
 .../management/internal/cli/NetstatDUnitTest.java  |   16 +-
 .../AlterRegionCommandIntegrationTest.java         |    6 +-
 .../commands/ChangeLogLevelCommandDUnitTest.java   |    8 +-
 .../cli/commands/ConcurrentDeployDUnitTest.java    |    8 +-
 .../CreateDefinedIndexesCommandDUnitTest.java      |  218 +++
 .../commands/CreateDefinedIndexesCommandTest.java  |  166 +++
 .../cli/commands/CreateRegionCommandDUnitTest.java |    4 +-
 .../CreateRegionCommandIntegrationTest.java        |    6 +-
 ...DeployCommandFunctionRegistrationDUnitTest.java |    4 +-
 .../commands/DeployCommandRedeployDUnitTest.java   |    4 +-
 .../cli/commands/DeployWithGroupsDUnitTest.java    |    4 +-
 .../DescribeConfigCommandIntegrationTest.java      |    7 +-
 .../commands/DescribeMembersCommandDUnitTest.java  |    4 +-
 .../commands/DestroyGatewaySenderCommandTest.java  |  108 ++
 .../commands/DestroyIndexCommandsDUnitTest.java    |    4 +-
 .../commands/DestroyRegionCommandDUnitTest.java    |    4 +-
 .../ExecuteFunctionCommandSecurityTest.java        |   28 +-
 .../cli/commands/ExportDataIntegrationTest.java    |    7 +-
 .../internal/cli/commands/ExportLogsDUnitTest.java |    4 +-
 .../cli/commands/ExportLogsIntegrationTest.java    |    4 +-
 .../commands/ExportLogsOnServerManagerDUnit.java   |    9 +-
 .../cli/commands/ExportLogsStatsDUnitTest.java     |    4 +-
 .../ExportLogsWithMemberGroupDUnitTest.java        |    4 +-
 .../cli/commands/FunctionCommandsDUnitTest.java    |    6 +-
 .../internal/cli/commands/GcCommandDUnitTest.java  |    8 +-
 .../cli/commands/GetCommandIntegrationTest.java    |    6 +-
 .../cli/commands/GfshCommandIntegrationTest.java   |    6 +-
 .../cli/commands/ImportDataIntegrationTest.java    |    7 +-
 .../cli/commands/IndexCommandsIntegrationTest.java |    6 +-
 .../IndexCommandsShareConfigurationDUnitTest.java  |    6 +-
 .../commands/ListAndDescribeRegionDUnitTest.java   |   30 +-
 .../cli/commands/ListIndexCommandDUnitTest.java    |    6 +-
 .../cli/commands/ListMembersCommandDUnitTest.java  |    4 +-
 .../cli/commands/LocateEntryDUnitTest.java         |    4 +-
 .../cli/commands/PutCommandIntegrationTest.java    |    6 +-
 .../internal/cli/commands/QueryCommandTest.java    |    9 +-
 .../cli/commands/RemoveCommandDUnitTest.java       |    4 +-
 .../cli/commands/RemoveCommandJsonDUnitTest.java   |    4 +-
 .../cli/commands/ShowDeadlockDUnitTest.java        |    4 +-
 .../cli/commands/ShowLogCommandDUnitTest.java      |    8 +-
 .../ShowMetricsCommandIntegrationTest.java         |  171 +++
 .../cli/commands/ShowMetricsDUnitTest.java         |    8 +-
 ...andJUnitTest.java => ShowMetricsJUnitTest.java} |    8 +-
 .../commands/ShowMissingDiskStoresDUnitTest.java   |    8 +-
 .../cli/commands/ShutdownCommandDUnitTest.java     |    8 +-
 .../cli/commands/VersionCommandJUnitTest.java      |    4 +-
 .../GfshStatusCommandsIntegrationTest.java         |    4 +-
 .../CliFunctionResultTest.java}                    |   22 +-
 .../CreateDefinedIndexesFunctionTest.java          |  226 +++
 ....java => GatewaySenderDestroyFunctionTest.java} |   48 +-
 .../cli/shell/GfshMultilineCommandTest.java        |    6 +-
 .../ClusterConfigDeployJarDUnitTest.java           |    4 +-
 .../ClusterConfigDistributionDUnitTest.java        |    4 +-
 .../ClusterConfigImportDUnitTest.java              |    4 +-
 .../ClusterConfigWithSecurityDUnitTest.java        |    4 +-
 .../ImportClusterConfigDistributedTest.java        |    4 +-
 .../ImportOldClusterConfigDUnitTest.java           |    4 +-
 .../security/GfshCommandsPostProcessorTest.java    |    7 +-
 .../security/GfshCommandsSecurityTest.java         |    6 +-
 .../internal/security/MultiUserDUnitTest.java      |   10 +-
 .../PDXGfshPostProcessorOnRemoteServerTest.java    |    6 +-
 .../geode/security/PDXPostProcessorDUnitTest.java  |    8 +-
 .../java/org/apache/geode/test/fake/Fakes.java     |    2 +
 .../test/junit/assertions/CommandResultAssert.java |   38 +-
 ...ellConnectionRule.java => GfshCommandRule.java} |   10 +-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |  215 +--
 .../geode/codeAnalysis/sanctionedSerializables.txt |    2 +-
 .../cli/commands/golden-help-offline.properties    |   10 +-
 .../lucene/LuceneCommandsSecurityDUnitTest.java    |   28 +-
 .../internal/cli/LuceneIndexCommandsDUnitTest.java |    6 +-
 .../LuceneClusterConfigurationDUnitTest.java       |    4 +-
 .../pulse/internal/security/LogoutHandler.java     |   11 +-
 .../internal/security/LogoutHandlerUnitTest.java   |  103 ++
 ...teAndDestroyGatewaySenderCommandsDUnitTest.java |    4 +-
 .../CreateGatewayReceiverCommandDUnitTest.java     |    4 +-
 .../CreateGatewaySenderCommandDUnitTest.java       |    4 +-
 .../DestroyGatewaySenderCommandDUnitTest.java      |   69 +-
 .../PauseGatewaySenderCommandDUnitTest.java        |    4 +-
 .../ResumeGatewaySenderCommandDUnitTest.java       |    4 +-
 .../StartGatewayReceiverCommandDUnitTest.java      |    4 +-
 .../StartGatewaySenderCommandDUnitTest.java        |    4 +-
 .../StatusGatewayReceiverCommandDUnitTest.java     |    4 +-
 .../StatusGatewaySenderCommandDUnitTest.java       |    4 +-
 .../StopGatewayReceiverCommandDUnitTest.java       |    4 +-
 .../StopGatewaySenderCommandDUnitTest.java         |    4 +-
 .../wan/wancommand/WanCommandListDUnitTest.java    |    4 +-
 ...rConfigurationIndexWithFromClauseDUnitTest.java |   16 +-
 .../WANClusterConfigurationDUnitTest.java          |    4 +-
 .../cli/commands/AlterRuntimeCommandDUnitTest.java |  112 +-
 .../commands/ClusterConfigurationDUnitTest.java    |    6 +-
 .../internal/cli/commands/CommandOverHttpTest.java |    6 +-
 .../commands/ConnectCommandIntegrationTest.java    |    8 +-
 .../cli/commands/ConnectCommandWithSSLTest.java    |   70 +-
 .../commands/ConnectCommandWithSecurityTest.java   |   14 +-
 .../commands/DescribeConfigCommandDUnitTest.java   |    8 +-
 ...xecuteFunctionCommandWithSecurityDUnitTest.java |    8 +-
 .../cli/commands/ExportConfigCommandDUnitTest.java |    8 +-
 .../ExportLogsOverHttpIntegrationTest.java         |    4 +-
 .../commands/ExportLogsStatsOverHttpDUnitTest.java |    4 +-
 .../FunctionCommandsOverHttpDUnitTest.java         |    4 +-
 .../cli/commands/IndexCommandOverHttpTest.java     |    4 +-
 .../ListIndexCommandOverHttpDUnitTest.java         |    4 +-
 .../security/GfshCommandsOverHttpSecurityTest.java |    5 +-
 .../internal/security/LogNoPasswordTest.java       |    6 +-
 .../HttpOperationInvokerMBeanOperationTest.java    |    6 +-
 .../shell/HttpOperationInvokerSecurityTest.java    |   12 +-
 125 files changed, 2506 insertions(+), 1701 deletions(-)
 create mode 100644 geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ShowMetricsInterceptor.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateDefinedIndexesCommandDUnitTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateDefinedIndexesCommandTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/DestroyGatewaySenderCommandTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ShowMetricsCommandIntegrationTest.java
 rename geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/{ShowMetricsCommandJUnitTest.java => ShowMetricsJUnitTest.java} (92%)
 copy geode-core/src/test/java/org/apache/geode/management/internal/cli/{commands/ExportDataCommandTest.java => functions/CliFunctionResultTest.java} (61%)
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/cli/functions/CreateDefinedIndexesFunctionTest.java
 copy geode-core/src/test/java/org/apache/geode/management/internal/cli/functions/{RegionDestroyFunctionTest.java => GatewaySenderDestroyFunctionTest.java} (64%)
 rename geode-core/src/test/java/org/apache/geode/test/junit/rules/{GfshShellConnectionRule.java => GfshCommandRule.java} (96%)
 create mode 100644 geode-pulse/src/test/java/org/apache/geode/tools/pulse/internal/security/LogoutHandlerUnitTest.java

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].

[geode] 01/01: Merge remote-tracking branch 'origin/develop' into feature/GEODE-3940

Posted by ds...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 59b43c964e6493495f07278a45ac5eecc7e134e6
Merge: 807dd93 7fae1a1
Author: Darrel Schneider <ds...@pivotal.io>
AuthorDate: Tue Nov 14 13:53:30 2017 -0800

    Merge remote-tracking branch 'origin/develop' into feature/GEODE-3940

 .travis.yml                                        |    4 +
 .../session/tests/TomcatClientServerTest.java      |    4 +-
 .../TomcatSessionBackwardsCompatibilityTest.java   |    4 +-
 .../distributed/internal/InternalLocator.java      |   80 +-
 .../geode/management/internal/cli/GfshParser.java  |    2 +-
 .../cli/commands/CreateDefinedIndexesCommand.java  |   27 +-
 .../cli/commands/DestroyGatewaySenderCommand.java  |   57 +-
 .../internal/cli/commands/GfshCommand.java         |    5 +
 .../internal/cli/commands/ShowMetricsCommand.java  | 1456 ++++++++------------
 .../cli/commands/ShowMetricsInterceptor.java       |  107 ++
 .../internal/cli/functions/CliFunctionResult.java  |   14 +
 .../functions/CreateDefinedIndexesFunction.java    |   83 +-
 .../functions/GatewaySenderDestroyFunction.java    |   58 +-
 .../GatewaySenderDestroyFunctionArgs.java          |    8 +-
 .../management/internal/cli/i18n/CliStrings.java   |    7 +-
 .../geode/internal/cache/CommitFunction.java       |    3 +-
 .../ExtensionClusterConfigurationDUnitTest.java    |    4 +-
 .../geode/internal/cache/ha/Bug48571DUnitTest.java |   96 +-
 .../management/internal/cli/CliUtilDUnitTest.java  |    4 +-
 .../management/internal/cli/NetstatDUnitTest.java  |   16 +-
 .../AlterRegionCommandIntegrationTest.java         |    6 +-
 .../commands/ChangeLogLevelCommandDUnitTest.java   |    8 +-
 .../cli/commands/ConcurrentDeployDUnitTest.java    |    8 +-
 .../CreateDefinedIndexesCommandDUnitTest.java      |  218 +++
 .../commands/CreateDefinedIndexesCommandTest.java  |  166 +++
 .../cli/commands/CreateRegionCommandDUnitTest.java |    4 +-
 .../CreateRegionCommandIntegrationTest.java        |    6 +-
 ...DeployCommandFunctionRegistrationDUnitTest.java |    4 +-
 .../commands/DeployCommandRedeployDUnitTest.java   |    4 +-
 .../cli/commands/DeployWithGroupsDUnitTest.java    |    4 +-
 .../DescribeConfigCommandIntegrationTest.java      |    7 +-
 .../commands/DescribeMembersCommandDUnitTest.java  |    4 +-
 .../commands/DestroyGatewaySenderCommandTest.java  |  108 ++
 .../commands/DestroyIndexCommandsDUnitTest.java    |    4 +-
 .../commands/DestroyRegionCommandDUnitTest.java    |    4 +-
 .../ExecuteFunctionCommandSecurityTest.java        |   28 +-
 .../cli/commands/ExportDataIntegrationTest.java    |    7 +-
 .../internal/cli/commands/ExportLogsDUnitTest.java |    4 +-
 .../cli/commands/ExportLogsIntegrationTest.java    |    4 +-
 .../commands/ExportLogsOnServerManagerDUnit.java   |    9 +-
 .../cli/commands/ExportLogsStatsDUnitTest.java     |    4 +-
 .../ExportLogsWithMemberGroupDUnitTest.java        |    4 +-
 .../cli/commands/FunctionCommandsDUnitTest.java    |    6 +-
 .../internal/cli/commands/GcCommandDUnitTest.java  |    8 +-
 .../cli/commands/GetCommandIntegrationTest.java    |    6 +-
 .../cli/commands/GfshCommandIntegrationTest.java   |    6 +-
 .../cli/commands/ImportDataIntegrationTest.java    |    7 +-
 .../cli/commands/IndexCommandsIntegrationTest.java |    6 +-
 .../IndexCommandsShareConfigurationDUnitTest.java  |    6 +-
 .../commands/ListAndDescribeRegionDUnitTest.java   |   30 +-
 .../cli/commands/ListIndexCommandDUnitTest.java    |    6 +-
 .../cli/commands/ListMembersCommandDUnitTest.java  |    4 +-
 .../cli/commands/LocateEntryDUnitTest.java         |    4 +-
 .../cli/commands/PutCommandIntegrationTest.java    |    6 +-
 .../internal/cli/commands/QueryCommandTest.java    |    9 +-
 .../cli/commands/RemoveCommandDUnitTest.java       |    4 +-
 .../cli/commands/RemoveCommandJsonDUnitTest.java   |    4 +-
 .../cli/commands/ShowDeadlockDUnitTest.java        |    4 +-
 .../cli/commands/ShowLogCommandDUnitTest.java      |    8 +-
 .../ShowMetricsCommandIntegrationTest.java         |  171 +++
 .../cli/commands/ShowMetricsDUnitTest.java         |    8 +-
 ...andJUnitTest.java => ShowMetricsJUnitTest.java} |    8 +-
 .../commands/ShowMissingDiskStoresDUnitTest.java   |    8 +-
 .../cli/commands/ShutdownCommandDUnitTest.java     |    8 +-
 .../cli/commands/VersionCommandJUnitTest.java      |    4 +-
 .../GfshStatusCommandsIntegrationTest.java         |    4 +-
 .../cli/functions/CliFunctionResultTest.java}      |   28 +-
 .../CreateDefinedIndexesFunctionTest.java          |  226 +++
 .../GatewaySenderDestroyFunctionTest.java          |   87 ++
 .../cli/shell/GfshMultilineCommandTest.java        |    6 +-
 .../ClusterConfigDeployJarDUnitTest.java           |    4 +-
 .../ClusterConfigDistributionDUnitTest.java        |    4 +-
 .../ClusterConfigImportDUnitTest.java              |    4 +-
 .../ClusterConfigWithSecurityDUnitTest.java        |    4 +-
 .../ImportClusterConfigDistributedTest.java        |    4 +-
 .../ImportOldClusterConfigDUnitTest.java           |    4 +-
 .../security/GfshCommandsPostProcessorTest.java    |    7 +-
 .../security/GfshCommandsSecurityTest.java         |    6 +-
 .../internal/security/MultiUserDUnitTest.java      |   10 +-
 .../PDXGfshPostProcessorOnRemoteServerTest.java    |    6 +-
 .../geode/security/PDXPostProcessorDUnitTest.java  |    8 +-
 .../java/org/apache/geode/test/fake/Fakes.java     |    2 +
 .../test/junit/assertions/CommandResultAssert.java |   38 +-
 ...ellConnectionRule.java => GfshCommandRule.java} |   10 +-
 .../apache/geode/codeAnalysis/excludedClasses.txt  |  215 +--
 .../geode/codeAnalysis/sanctionedSerializables.txt |    2 +-
 .../cli/commands/golden-help-offline.properties    |   10 +-
 .../lucene/LuceneCommandsSecurityDUnitTest.java    |   28 +-
 .../internal/cli/LuceneIndexCommandsDUnitTest.java |    6 +-
 .../LuceneClusterConfigurationDUnitTest.java       |    4 +-
 .../pulse/internal/security/LogoutHandler.java     |   11 +-
 .../internal/security/LogoutHandlerUnitTest.java   |  103 ++
 ...teAndDestroyGatewaySenderCommandsDUnitTest.java |    4 +-
 .../CreateGatewayReceiverCommandDUnitTest.java     |    4 +-
 .../CreateGatewaySenderCommandDUnitTest.java       |    4 +-
 .../DestroyGatewaySenderCommandDUnitTest.java      |   69 +-
 .../PauseGatewaySenderCommandDUnitTest.java        |    4 +-
 .../ResumeGatewaySenderCommandDUnitTest.java       |    4 +-
 .../StartGatewayReceiverCommandDUnitTest.java      |    4 +-
 .../StartGatewaySenderCommandDUnitTest.java        |    4 +-
 .../StatusGatewayReceiverCommandDUnitTest.java     |    4 +-
 .../StatusGatewaySenderCommandDUnitTest.java       |    4 +-
 .../StopGatewayReceiverCommandDUnitTest.java       |    4 +-
 .../StopGatewaySenderCommandDUnitTest.java         |    4 +-
 .../wan/wancommand/WanCommandListDUnitTest.java    |    4 +-
 ...rConfigurationIndexWithFromClauseDUnitTest.java |   16 +-
 .../WANClusterConfigurationDUnitTest.java          |    4 +-
 .../cli/commands/AlterRuntimeCommandDUnitTest.java |  112 +-
 .../commands/ClusterConfigurationDUnitTest.java    |    6 +-
 .../internal/cli/commands/CommandOverHttpTest.java |    6 +-
 .../commands/ConnectCommandIntegrationTest.java    |    8 +-
 .../cli/commands/ConnectCommandWithSSLTest.java    |   70 +-
 .../commands/ConnectCommandWithSecurityTest.java   |   14 +-
 .../commands/DescribeConfigCommandDUnitTest.java   |    8 +-
 ...xecuteFunctionCommandWithSecurityDUnitTest.java |    8 +-
 .../cli/commands/ExportConfigCommandDUnitTest.java |    8 +-
 .../ExportLogsOverHttpIntegrationTest.java         |    4 +-
 .../commands/ExportLogsStatsOverHttpDUnitTest.java |    4 +-
 .../FunctionCommandsOverHttpDUnitTest.java         |    4 +-
 .../cli/commands/IndexCommandOverHttpTest.java     |    4 +-
 .../ListIndexCommandOverHttpDUnitTest.java         |    4 +-
 .../security/GfshCommandsOverHttpSecurityTest.java |    5 +-
 .../internal/security/LogNoPasswordTest.java       |    6 +-
 .../HttpOperationInvokerMBeanOperationTest.java    |    6 +-
 .../shell/HttpOperationInvokerSecurityTest.java    |   12 +-
 125 files changed, 2581 insertions(+), 1671 deletions(-)

diff --cc geode-core/src/test/resources/org/apache/geode/codeAnalysis/excludedClasses.txt
index 43f4d9f,481a7d6..d218f77
--- a/geode-core/src/test/resources/org/apache/geode/codeAnalysis/excludedClasses.txt
+++ b/geode-core/src/test/resources/org/apache/geode/codeAnalysis/excludedClasses.txt
@@@ -7,14 -33,31 +33,31 @@@ org/apache/geode/distributed/LocatorLau
  org/apache/geode/distributed/LocatorLauncher$Command
  org/apache/geode/distributed/ServerLauncher
  org/apache/geode/distributed/ServerLauncher$Command
+ org/apache/geode/distributed/internal/DistributionConfigImpl
  org/apache/geode/distributed/internal/DistributionManager
+ org/apache/geode/distributed/internal/tcpserver/LocatorCancelException
+ org/apache/geode/internal/AvailablePort$Keeper
  org/apache/geode/internal/ExitCode
  org/apache/geode/internal/JarDeployer
 -org/apache/geode/internal/cache/BackupLock
 +org/apache/geode/internal/cache/backup/BackupLock
+ org/apache/geode/internal/cache/DiskStoreAttributesCreation
+ org/apache/geode/internal/cache/DiskStoreMonitor$DiskState
+ org/apache/geode/internal/cache/EventStateHelper
+ org/apache/geode/internal/cache/InitialImageOperation$GIITestHook
+ org/apache/geode/internal/cache/Oplog$OPLOG_TYPE
+ org/apache/geode/internal/cache/UserSpecifiedDiskStoreAttributes
+ org/apache/geode/internal/cache/client/protocol/exception/ServiceLoadingFailureException
+ org/apache/geode/internal/cache/client/protocol/exception/ServiceVersionNotFoundException
+ org/apache/geode/internal/cache/operations/ContainsKeyOperationContext
+ org/apache/geode/internal/cache/tier/CommunicationMode
+ org/apache/geode/internal/cache/tier/InternalClientMembership$EventType
+ org/apache/geode/internal/cache/tier/sockets/ClientUpdateMessageImpl$ClientCqConcurrentMap
+ org/apache/geode/internal/cache/tier/sockets/ClientUpdateMessageImpl$CqNameToOpHashMap
+ org/apache/geode/internal/datasource/FacetsJCAConnectionManagerImpl
  org/apache/geode/internal/exception/InvalidExecutionContextException
  org/apache/geode/internal/logging/GemFireLevel
- org/apache/geode/internal/logging/LoggingThreadGroup
  org/apache/geode/internal/logging/LogWriterImpl
+ org/apache/geode/internal/logging/LoggingThreadGroup
  org/apache/geode/internal/logging/log4j/ConfigurableLogger
  org/apache/geode/internal/logging/log4j/CustomGemFireLogger
  org/apache/geode/internal/logging/log4j/ExtendedGemFireLogger

-- 
To stop receiving notification emails like this one, please contact
"commits@geode.apache.org" <co...@geode.apache.org>.