You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bo...@apache.org on 2018/03/21 17:17:24 UTC

[geode] 01/01: Merge branch 'develop' into feature/GEODE-4451-2

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

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

commit 66e0d47b649b6e1533c2ca5088df25b532b9f1ee
Merge: 841ef33 e1dc682
Author: Barry Oglesby <bo...@users.noreply.github.com>
AuthorDate: Wed Mar 21 10:17:21 2018 -0700

    Merge branch 'develop' into feature/GEODE-4451-2

 ci/bin/concourse_job_performance.py                |    2 +-
 ci/docker/Dockerfile                               |    2 +-
 ci/scripts/concourse_job_performance.sh            |    1 -
 .../cli/commands/PutCommandWithJsonTest.java       |    6 +-
 .../web/controllers/RestAPIsWithSSLDUnitTest.java  |   19 +-
 .../geode/tools/pulse/PulseConnectivityTest.java   |    3 +-
 .../geode/tools/pulse/PulseDataExportTest.java     |    3 +-
 .../tools/pulse/PulseJmxPasswordFileTest.java      |    4 +-
 .../tools/pulse/PulseSecurityIntegrationTest.java  |    4 +-
 .../geode/tools/pulse/PulseSecurityTest.java       |    4 +-
 .../tools/pulse/PulseSecurityWithSSLTest.java      |    4 +-
 .../tools/pulse/ui/PulseAcceptanceTestBase.java    |    3 +
 geode-book/config.yml                              |    6 +-
 .../source/subnavs/geode-subnav.erb                |    3 +
 geode-book/redirects.rb                            |    4 +-
 .../geode/connectors/jdbc/JdbcAsyncWriter.java     |   20 +-
 .../connectors/jdbc/JdbcConnectorException.java    |   80 +-
 .../apache/geode/connectors/jdbc/JdbcLoader.java   |    2 +-
 .../apache/geode/connectors/jdbc/JdbcWriter.java   |   13 +-
 .../jdbc/internal/AbstractJdbcCallback.java        |   17 +-
 .../connectors/jdbc/internal/ColumnValue.java      |   13 +-
 .../geode/connectors/jdbc/internal/SqlHandler.java |  114 +-
 .../jdbc/internal/SqlToPdxInstanceCreator.java     |  205 ++
 .../connectors/jdbc/internal/TableMetaData.java    |   54 +
 ...olumnManager.java => TableMetaDataManager.java} |   58 +-
 .../jdbc/internal/TableMetaDataView.java           |   23 +
 .../AnalyzeConnectorsSerializablesJUnitTest.java   |    5 +-
 .../jdbc/ClassWithSupportedPdxFields.java          |  181 +
 .../jdbc/JdbcAsyncWriterIntegrationTest.java       |   20 +-
 .../geode/connectors/jdbc/JdbcAsyncWriterTest.java |   18 +-
 .../jdbc/JdbcConnectorExceptionTest.java           |   85 +
 .../geode/connectors/jdbc/JdbcDUnitTest.java       |  319 +-
 .../connectors/jdbc/JdbcLoaderIntegrationTest.java |  141 +-
 .../connectors/jdbc/JdbcWriterIntegrationTest.java |    7 +-
 .../geode/connectors/jdbc/JdbcWriterTest.java      |   44 +-
 .../jdbc/internal/AbstractJdbcCallbackTest.java    |   22 +
 .../connectors/jdbc/internal/ColumnValueTest.java  |   12 +-
 .../connectors/jdbc/internal/SqlHandlerTest.java   |  228 +-
 .../jdbc/internal/SqlStatementFactoryTest.java     |   10 +-
 .../jdbc/internal/SqlToPdxInstanceCreatorTest.java |  515 +++
 .../jdbc/internal/TableKeyColumnManagerTest.java   |  141 -
 .../TableMetaDataManagerIntegrationTest.java       |  106 +
 .../jdbc/internal/TableMetaDataManagerTest.java    |  226 ++
 .../jdbc/internal/TestConfigService.java           |   22 +-
 .../java/org/apache/geode/cache/GemFireCache.java  |   21 +
 .../geode/cache/configuration/CacheConfig.java     | 3574 ++++++++++++++++++++
 .../geode/cache/configuration/CacheElement.java    |   27 +
 .../geode/cache/configuration/CacheLoaderType.java |  124 +
 .../configuration/CacheTransactionManagerType.java |  324 ++
 .../geode/cache/configuration/CacheWriterType.java |  124 +
 .../configuration/ClassWithParametersType.java     |  120 +
 .../geode/cache/configuration/DeclarableType.java  |  124 +
 .../geode/cache/configuration/DiskDirType.java     |  114 +
 .../geode/cache/configuration/DiskDirsType.java    |   97 +
 .../geode/cache/configuration/DiskStoreType.java   |  358 ++
 .../configuration/DynamicRegionFactoryType.java    |  182 +
 .../configuration/EnumActionDestroyOverflow.java   |   73 +
 .../cache/configuration/EnumReadableWritable.java  |   73 +
 .../configuration/ExpirationAttributesType.java    |  254 ++
 .../cache/configuration/FunctionServiceType.java   |  197 ++
 .../geode/cache/configuration/InitializerType.java |  126 +
 .../cache/configuration/JndiBindingsType.java      |  758 +++++
 .../geode/cache/configuration/ParameterType.java   |  142 +
 .../apache/geode/cache/configuration/PdxType.java  |  300 ++
 .../apache/geode/cache/configuration/PoolType.java |  875 +++++
 .../configuration/RegionAttributesDataPolicy.java  |   83 +
 .../RegionAttributesIndexUpdateType.java           |   74 +
 .../configuration/RegionAttributesMirrorType.java  |   75 +
 .../cache/configuration/RegionAttributesScope.java |   77 +
 .../cache/configuration/RegionAttributesType.java  | 3481 +++++++++++++++++++
 .../geode/cache/configuration/RegionConfig.java    | 1075 ++++++
 .../cache/configuration/ResourceManagerType.java   |  166 +
 .../SerializationRegistrationType.java             |  291 ++
 .../geode/cache/configuration/ServerType.java      |  705 ++++
 .../geode/cache/configuration/StringType.java      |   84 +
 .../distributed/ClusterConfigurationService.java   |  174 +
 .../internal/AbstractDistributionConfig.java       |    3 +-
 ...va => InternalClusterConfigurationService.java} |  132 +-
 .../distributed/internal/InternalLocator.java      |   10 +-
 .../geode/distributed/internal/ServerLocator.java  |    2 +-
 .../membership/gms/locator/GMSLocator.java         |    4 +-
 .../distributed/internal/tcpserver/TcpHandler.java |    4 +-
 .../distributed/internal/tcpserver/TcpServer.java  |    4 +-
 .../geode/internal/cache/AbstractRegionMap.java    |    6 +
 .../apache/geode/internal/cache/BucketAdvisor.java |    8 +-
 .../internal/cache/ClusterConfigurationLoader.java |    6 +-
 ...rnalEntryEvent.java => ColocationListener.java} |   16 +-
 .../geode/internal/cache/EntryEventImpl.java       |    2 +-
 .../internal/cache/EntryEventSerialization.java    |   87 +
 .../apache/geode/internal/cache/FilterProfile.java |   25 +-
 .../geode/internal/cache/GemFireCacheImpl.java     |   21 +-
 .../geode/internal/cache/InternalEntryEvent.java   |    6 +
 .../internal/cache/PartitionRegionConfig.java      |   72 +-
 .../geode/internal/cache/PartitionedRegion.java    |   23 +-
 .../geode/internal/cache/TXCommitMessage.java      |    6 +-
 .../apache/geode/internal/cache/TXEntryState.java  |  144 +-
 .../org/apache/geode/internal/cache/TXState.java   |  136 +-
 .../org/apache/geode/internal/cache/Token.java     |   31 +-
 .../cache/entries/AbstractRegionEntry.java         |   51 +-
 .../partitioned/PartitionedRegionRebalanceOp.java  |    4 +-
 .../partitioned/rebalance/CompositeDirector.java   |    2 +
 .../rebalance/ExplicitMoveDirector.java            |   11 +-
 .../cache/partitioned/rebalance/FPRDirector.java   |    2 +
 .../cache/partitioned/rebalance/MoveBuckets.java   |    3 +-
 .../cache/partitioned/rebalance/MovePrimaries.java |    3 +-
 .../partitioned/rebalance/MovePrimariesFPR.java    |    7 +-
 .../rebalance/PercentageMoveDirector.java          |    7 +-
 .../partitioned/rebalance/RebalanceDirector.java   |    1 +
 .../rebalance/RebalanceDirectorAdapter.java        |    2 +
 .../rebalance/RemoveOverRedundancy.java            |    7 +-
 .../partitioned/rebalance/SatisfyRedundancy.java   |    5 +-
 .../rebalance/SatisfyRedundancyFPR.java            |    7 +-
 .../rebalance/model/AddressComparor.java}          |   32 +-
 .../cache/partitioned/rebalance/model/Bucket.java  |  160 +
 .../partitioned/rebalance/model/BucketRollup.java  |  104 +
 .../cache/partitioned/rebalance/model/Member.java  |  239 ++
 .../partitioned/rebalance/model/MemberRollup.java  |  159 +
 .../cache/partitioned/rebalance/model/Move.java    |   74 +
 .../{ => model}/PartitionedRegionLoadModel.java    |  812 +----
 .../partitioned/rebalance/model/RefusalReason.java |   49 +
 .../internal/cache/wan/GatewaySenderEventImpl.java |   33 +-
 .../internal/cache/xmlcache/CacheCreation.java     |    5 +
 .../internal/cache/xmlcache/CacheXmlGenerator.java |    9 +-
 .../internal/datasource/DataSourceFactory.java     |   11 +-
 .../apache/geode/internal/jndi/JNDIInvoker.java    |   13 +-
 .../geode/internal/lang/SystemPropertyHelper.java  |    7 +-
 .../process/MBeanOrFileProcessController.java      |   64 +
 .../internal/process/ProcessControllerFactory.java |   10 +-
 .../geode/management/internal/JettyHelper.java     |    6 +-
 .../management/internal/JmxManagerLocator.java     |    4 +-
 .../apache/geode/management/internal/SSLUtil.java  |   12 +-
 .../cli/commands/AlterAsyncEventQueueCommand.java  |    4 +-
 .../cli/commands/ChangeLogLevelCommand.java        |  136 +-
 .../cli/commands/CommandAvailabilityIndicator.java |    2 +-
 .../internal/cli/commands/ConfigurePDXCommand.java |  181 +-
 .../cli/commands/CreateJndiBindingCommand.java     |  118 +-
 .../internal/cli/commands/DeployCommand.java       |    4 +-
 .../cli/commands/DestroyJndiBindingCommand.java    |   74 +-
 .../ExportImportClusterConfigurationCommands.java  |    6 +-
 .../internal/cli/commands/GfshCommand.java         |    6 +-
 .../cli/commands/ListJndiBindingCommand.java       |   44 +-
 .../internal/cli/commands/QueryCommand.java        |    3 +-
 .../StatusClusterConfigServiceCommand.java         |    3 +-
 .../cli/converters/ConfigPropertyConverter.java    |   12 +-
 .../cli/functions/CreateJndiBindingFunction.java   |   48 +-
 .../cli/functions/JndiBindingConfiguration.java    |  217 --
 .../cli/functions/ListJndiBindingFunction.java     |    3 -
 .../management/internal/cli/i18n/CliStrings.java   |    9 +-
 .../geode/management/internal/cli/shell/Gfsh.java  |    2 +-
 .../callbacks/ConfigurationChangeListener.java     |    6 +-
 .../functions/DownloadJarFunction.java             |    4 +-
 .../functions/GetClusterConfigurationFunction.java |    4 +-
 .../SharedConfigurationStatusRequestHandler.java   |    4 +-
 .../pdx/internal/AutoSerializableManager.java      |    2 +-
 .../geode/pdx/internal/InternalPdxInstance.java}   |    7 +-
 .../apache/geode/pdx/internal/PdxInstanceImpl.java |   12 +-
 .../apache/geode/pdx/internal/TypeRegistry.java    |    2 +-
 .../sanctioned-geode-core-serializables.txt        |   13 +-
 .../test/java/org/apache/geode/DeltaTestImpl.java  |   52 +-
 ...est.java => ValueConstraintRegressionTest.java} |   50 +-
 ...ncEventQueueEvictionAndExpirationJUnitTest.java |   13 +-
 .../SerialAsyncEventQueueImplJUnitTest.java        |    4 +-
 .../AutoConnectionSourceImplJUnitTest.java         |   11 +-
 .../geode/cache/query/PdxStringQueryJUnitTest.java |   39 +-
 ...itTest.java => QueryServiceRegressionTest.java} |  264 +-
 .../org/apache/geode/cache/query/data/Address.java |   18 +-
 .../org/apache/geode/cache/query/data/Data.java    |   20 +-
 .../apache/geode/cache/query/data/Employee.java    |   22 +-
 .../apache/geode/cache/query/data/Keywords.java    |   11 +-
 .../org/apache/geode/cache/query/data/Manager.java |    7 -
 .../org/apache/geode/cache/query/data/PhoneNo.java |   13 +-
 .../apache/geode/cache/query/data/Portfolio.java   |   14 +-
 .../org/apache/geode/cache/query/data/Street.java  |   13 +-
 .../apache/geode/cache/query/data/TradingLine.java |    3 +-
 .../query/functional/INOperatorJUnitTest.java      |   93 +-
 .../IUMRMultiIndexesMultiRegionJUnitTest.java      |  965 ++----
 .../functional/IUMRShuffleIteratorsJUnitTest.java  |  142 +-
 .../query/functional/LikePredicateJUnitTest.java   |  417 +--
 .../cache/query/functional/MiscJUnitTest.java      |   77 +-
 .../query/functional/MultipleRegionsJUnitTest.java |   29 +-
 .../functional/ReservedKeywordsJUnitTest.java      |   13 +-
 .../query/internal/CopyOnReadQueryJUnitTest.java   |   73 +-
 .../internal/QueryObserverCallbackJUnitTest.java   |  461 ++-
 .../cache/query/internal/QueryUtilsJUnitTest.java  |  283 +-
 .../index/HashIndexQueryIntegrationTest.java       |  409 +--
 .../internal/index/IndexMaintenanceJUnitTest.java  |  857 ++---
 .../query/internal/index/IndexUseJUnitTest.java    |  937 ++---
 .../index/MapRangeIndexMaintenanceJUnitTest.java   |  183 +-
 .../apache/geode/cache30/CacheXml80DUnitTest.java  |   14 +-
 .../apache/geode/cache30/CacheXml81DUnitTest.java  |   13 +-
 ...=> CacheXmlParameterizationRegressionTest.java} |   78 +-
 ...va => DefaultEvictionActionRegressionTest.java} |   75 +-
 .../cache30/PRBucketSynchronizationDUnitTest.java  |  356 +-
 .../geode/cache30/RRSynchronizationDUnitTest.java  |  310 +-
 ...=> ShorteningExpirationTimeRegressionTest.java} |  112 +-
 .../LocatorLauncherIntegrationTestCase.java        |    2 +-
 .../geode/distributed/ServerLauncherDUnitTest.java |   17 +-
 .../distributed/ServerLauncherDUnitTestHelper.java |    1 +
 .../internal/CacheConfigIntegrationTest.java       |   55 +
 .../InternalClusterConfigurationServiceTest.java   |  338 ++
 ...oDataThrowsRuntimeExceptionRegressionTest.java} |   28 +-
 .../internal/tcpserver/TcpServerJUnitTest.java     |    6 +-
 ... SystemFailureThreadCleanupRegressionTest.java} |   11 +-
 ...onCreateBeforeInitializationRegressionTest.java |  135 +
 ...okenSerializationConsistencyRegressionTest.java |  216 ++
 .../geode/internal/cache/Bug33359DUnitTest.java    |  153 -
 .../geode/internal/cache/Bug33726DUnitTest.java    |  156 -
 .../geode/internal/cache/Bug33726JUnitTest.java    |   27 +-
 .../CacheWriterGetOldValueIntegrationTest.java     |  222 +-
 .../ClearRegionMessageAssertionRegressionTest.java |  121 +
 ...ntDeserializationCopyOnReadRegressionTest.java} |  165 +-
 .../cache/EntryEventSerializationTest.java         |  201 ++
 .../internal/cache/EvictionAttributesImplTest.java |   44 +-
 .../FilterProfileNullCqBaseRegionJUnitTest.java    |   74 +
 .../geode/internal/cache/GemFireCacheImplTest.java |   33 +
 ...st.java => PartitionRegionConfigJUnitTest.java} |   31 +-
 .../internal/cache/PartitionRegionConfigTest.java  |   84 +
 .../cache/PartitionedRegionCreationJUnitTest.java  |    1 +
 ...itionedRegionQueryEvaluatorIntegrationTest.java |   42 +-
 .../cache/entries/AbstractRegionEntryTest.java     |   23 +-
 .../extension/mock/MockExtensionCommands.java      |    5 +-
 .../cache/ha/BlockingHARegionQueueJUnitTest.java   |   24 +-
 .../internal/cache/ha/HARegionQueueJUnitTest.java  |  220 +-
 .../PartitionedRegionLoadModelJUnitTest.java       |   11 +-
 ...t.java => RegisterInterestDistributedTest.java} |   89 +-
 ...yncEventQueueEntrySynchronizationDUnitTest.java |    3 +-
 .../cache/wan/AsyncEventQueueTestBase.java         |   18 +-
 ...ewayReceiverXmlParsingValidationsJUnitTest.java |    3 +-
 .../asyncqueue/AsyncEventListenerDUnitTest.java    |   20 +-
 .../AsyncEventListenerOffHeapDUnitTest.java        |    8 +-
 .../asyncqueue/AsyncEventQueueStatsDUnitTest.java  |    7 +-
 .../AsyncEventQueueValidationsJUnitTest.java       |   11 +-
 .../ConcurrentAsyncEventQueueDUnitTest.java        |    7 +-
 .../ConcurrentAsyncEventQueueOffHeapDUnitTest.java |    8 +-
 .../CommonParallelAsyncEventQueueDUnitTest.java    |    7 +-
 ...monParallelAsyncEventQueueOffHeapDUnitTest.java |    8 +-
 ...elGatewaySenderFlushedCoordinatorJUnitTest.java |   11 +-
 .../datasource/AbstractPoolCacheJUnitTest.java     |   10 +-
 .../ProcessControllerFactoryIntegrationTest.java   |    2 +-
 .../process/ProcessControllerFactoryTest.java      |    2 +-
 .../apache/geode/management/JMXMBeanDUnitTest.java |   31 +-
 .../apache/geode/management/MXBeanAwaitility.java  |   41 +-
 ...niversalMembershipListenerAdapterDUnitTest.java |    6 +-
 .../management/internal/cli/CliUtilDUnitTest.java  |    2 +-
 .../AlterAsyncEventQueueCommandDUnitTest.java      |   10 +-
 .../commands/AlterAsyncEventQueueCommandTest.java  |    6 +-
 .../cli/commands/AlterCompressorDUnitTest.java     |    6 +-
 .../cli/commands/ConcurrentDeployDUnitTest.java    |    9 +-
 .../ConfigurePDXCommandIntegrationTest.java        |  135 +
 .../cli/commands/ConfigurePDXCommandTest.java      |  382 +++
 .../CreateAlterDestroyRegionCommandsDUnitTest.java |    6 +-
 .../CreateAsyncEventQueueCommandDUnitTest.java     |    6 +-
 .../commands/CreateAsyncEventQueueCommandTest.java |    6 +-
 .../CreateDefinedIndexesCommandDUnitTest.java      |    6 +-
 .../commands/CreateDefinedIndexesCommandTest.java  |   11 +-
 .../commands/CreateGatewayReceiverCommandTest.java |    6 +-
 .../commands/CreateGatewaySenderCommandTest.java   |    6 +-
 .../CreateJndiBindingCommandDUnitTest.java         |    6 +-
 .../cli/commands/CreateJndiBindingCommandTest.java |  179 +-
 .../cli/commands/DescribeRegionDUnitTest.java      |    2 +-
 .../DestroyAsyncEventQueueCommandDUnitTest.java    |   14 +-
 .../DestroyAsyncEventQueueCommandTest.java         |    4 +-
 .../commands/DestroyGatewaySenderCommandTest.java  |    6 +-
 .../DestroyJndiBindingCommandDUnitTest.java        |    4 +-
 .../commands/DestroyJndiBindingCommandTest.java    |  125 +-
 .../commands/DestroyRegionCommandDUnitTest.java    |   10 +-
 .../cli/commands/DestroyRegionCommandTest.java     |    6 +-
 .../cli/commands/DiskStoreCommandsDUnitTest.java   |    4 +-
 .../cli/commands/GfshCommandJUnitTest.java         |    6 +-
 .../IndexCommandsShareConfigurationDUnitTest.java  |    6 +-
 .../commands/ListJndiBindingCommandDUnitTest.java  |   29 +-
 ...dTest.java => QueryCommandIntegrationTest.java} |    8 +-
 .../converters/ConfigPropertyConverterTest.java    |    6 +-
 .../functions/CreateJndiBindingFunctionTest.java   |   26 +-
 .../DataCommandFunctionWithPDXJUnitTest.java       |    2 +-
 .../functions/DestroyJndiBindingFunctionTest.java  |   11 +-
 .../cli/functions/ListJndiBindingFunctionTest.java |   13 +-
 .../internal/cli/shell/GfshJunitTest.java          |   10 +
 .../internal/configuration/ClusterConfig.java      |    4 +-
 .../ClusterConfigLocatorRestartDUnitTest.java      |   17 +-
 .../ClusterConfigWithSecurityDUnitTest.java        |    6 +-
 ...usterConfigurationServiceUsingDirDUnitTest.java |    4 +-
 .../SharedConfigurationTestUtils.java              |    4 +-
 .../utils/XmlUtilsAddNewNodeJUnitTest.java         |    5 +-
 .../internal/security/MultiClientDUnitTest.java    |   15 +-
 .../apache/geode/management/model/EmptyObject.java |    5 +-
 .../geode/pdx/AutoSerializableJUnitTest.java       |   10 +-
 .../apache/geode/pdx/PdxClientServerDUnitTest.java |   14 +-
 .../dunit/internal/JUnit4DistributedTestCase.java  |    4 +-
 .../geode/test/dunit/rules/ClusterStartupRule.java |   22 +-
 .../rules/DistributedRestoreSystemProperties.java  |   64 +-
 ...utedRestoreSystemPropertiesDistributedTest.java |  138 +
 .../DistributedRestoreSystemPropertiesTest.java    |   56 +
 .../geode/test/junit/rules/MemberStarterRule.java  |    2 +-
 .../geode/test/junit/rules/ServerStarterRule.java  |   18 +-
 ...acheXmlParameterizationRegressionTest_cache.xml |   42 +
 ...rameterizationRegressionTest_gemfire.properties |   22 +-
 .../DefaultEvictionActionRegressionTest_cache.xml  |   29 +
 .../codeAnalysis/sanctionedDataSerializables.txt   |    8 +-
 .../cache/PRDeltaPropagationDUnitTest.java         |  796 ++---
 .../geode/security/ClientCQAuthDUnitTest.java      |   19 +-
 ...igure_client_server_event_messaging.html.md.erb |    6 +-
 .../topics/gemfire_properties.html.md.erb          |   12 +-
 .../gfsh/command-pages/create.html.md.erb          |   55 +-
 .../geode/experimental/driver/DriverFactory.java   |   34 +-
 .../geode/experimental/driver/ProtobufChannel.java |   54 +-
 .../geode/experimental/driver/ProtobufDriver.java  |    7 +-
 .../geode/experimental/driver/ProtobufRegion.java  |   14 -
 .../apache/geode/experimental/driver/Region.java   |   11 -
 .../experimental/driver/AuthenticationTest.java    |   92 +
 .../experimental/driver/RegionIntegrationTest.java |   23 -
 geode-junit/build.gradle                           |    3 +
 .../geode/test/junit/categories/AEQTest.java       |    6 +-
 .../geode/test/junit/categories/GfshTest.java      |    6 +-
 .../test/junit/categories/ManagementTest.java      |    6 +-
 .../geode/test/junit/categories/PulseTest.java     |    6 +-
 .../geode/test/junit/categories/SessionTest.java   |    6 +-
 .../test/junit/rules/ExecutorServiceRule.java      |   62 +-
 .../AccessibleRestoreSystemProperties.java         |   30 +-
 .../serializable/FieldSerializationUtils.java      |   10 +-
 .../geode/test/junit/runners/TestRunner.java       |   20 +
 .../lucene/internal/IndexRepositoryFactory.java    |   25 +-
 .../LuceneFileRegionColocationListener.java        |   47 +
 .../cache/lucene/internal/LuceneServiceImpl.java   |    4 +-
 .../internal/PartitionedRepositoryManager.java     |    2 +-
 .../lucene/internal/RawIndexRepositoryFactory.java |    4 +-
 .../internal/RawLuceneRepositoryManager.java       |    2 +-
 .../LuceneClusterConfigurationDUnitTest.java       |    7 +-
 .../cache/lucene/test/IndexRepositorySpy.java      |    8 +-
 .../cache/execute/FunctionExceptionTest.java       |   49 -
 .../src/main/proto/v1/basicTypes.proto             |    1 -
 .../src/main/proto/v1/clientProtocol.proto         |    3 -
 .../src/main/proto/v1/region_API.proto             |    9 -
 .../protocol/protobuf/v1/ProtobufOpsProcessor.java |    6 +-
 .../protobuf/v1/ProtobufStreamProcessor.java       |    1 +
 .../PutIfAbsentRequestOperationHandler.java        |   83 -
 .../registry/ProtobufOperationContextRegistry.java |   38 +-
 ...rotobufConnectionAuthorizingStateProcessor.java |    4 +-
 .../protobuf/v1/utilities/ProtobufUtilities.java   |   13 +-
 .../protobuf/v1/AuthenticationIntegrationTest.java |    3 -
 .../internal/protocol/protobuf/v1/MessageUtil.java |   17 -
 .../protobuf/v1/ProtobufRequestUtilities.java      |   19 +-
 .../v1/acceptance/CacheConnectionJUnitTest.java    |   15 +-
 .../v1/acceptance/CacheOperationsJUnitTest.java    |   20 +-
 .../PutIfAbsentRequestIntegrationTest.java         |  168 -
 ...utIfAbsentRequestOperationHandlerJUnitTest.java |  169 -
 .../controllers/PulseControllerJUnitTest.java      |   13 +-
 .../internal/cache/UpdateVersionDUnitTest.java     |  668 ++--
 .../cache/wan/CacheClientNotifierDUnitTest.java    |   64 +-
 .../cache/wan/Simple2CacheServerDUnitTest.java     |   41 +-
 .../geode/internal/cache/wan/WANTestBase.java      |  156 +-
 .../cache/wan/misc/WANLocatorServerDUnitTest.java  |    8 +-
 ...lelGatewaySenderOperationsOffHeapDUnitTest.java |   12 +-
 .../ParallelGatewaySenderOperationsDUnitTest.java  |  383 +--
 .../serial/SerialGatewaySenderQueueDUnitTest.java  |    4 +-
 ...CreateDestroyGatewaySenderCommandDUnitTest.java |   94 +-
 .../CreateGatewayReceiverCommandDUnitTest.java     |  309 +-
 .../PauseGatewaySenderCommandDUnitTest.java        |  154 +-
 .../ResumeGatewaySenderCommandDUnitTest.java       |  166 +-
 .../StartGatewayReceiverCommandDUnitTest.java      |  157 +-
 .../StartGatewaySenderCommandDUnitTest.java        |  203 +-
 .../StatusGatewayReceiverCommandDUnitTest.java     |  202 +-
 .../StatusGatewaySenderCommandDUnitTest.java       |  288 +-
 .../StopGatewayReceiverCommandDUnitTest.java       |  149 +-
 .../StopGatewaySenderCommandDUnitTest.java         |  170 +-
 .../cache/wan/wancommand/WANCommandUtils.java      |   40 +-
 .../wan/wancommand/WanCommandListDUnitTest.java    |  383 ++-
 .../cli/commands/DescribeRegionDUnitTest.java      |    2 +-
 .../cli/commands/AlterRuntimeCommandDUnitTest.java |    4 +-
 .../cli/commands/QueryCommandOverHttpTest.java     |    4 +-
 gradle/dependency-versions.properties              |    4 +-
 gradle/test.gradle                                 |   23 +
 372 files changed, 26600 insertions(+), 10478 deletions(-)

diff --cc geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateGatewaySenderCommandTest.java
index d87c37c,122cf10..b24792f
--- a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateGatewaySenderCommandTest.java
+++ b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateGatewaySenderCommandTest.java
@@@ -34,13 -33,9 +34,13 @@@ import org.junit.ClassRule
  import org.junit.Test;
  import org.junit.experimental.categories.Category;
  
 +import org.apache.geode.distributed.DistributedMember;
- import org.apache.geode.distributed.internal.ClusterConfigurationService;
+ import org.apache.geode.distributed.internal.InternalClusterConfigurationService;
 +import org.apache.geode.distributed.internal.membership.InternalDistributedMember;
 +import org.apache.geode.internal.Version;
  import org.apache.geode.internal.cache.InternalCache;
  import org.apache.geode.management.internal.cli.functions.CliFunctionResult;
 +import org.apache.geode.management.internal.cli.i18n.CliStrings;
  import org.apache.geode.management.internal.configuration.domain.XmlEntity;
  import org.apache.geode.test.junit.categories.UnitTest;
  import org.apache.geode.test.junit.rules.GfshParserRule;
diff --cc geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java
index 50ec50f,993133c..115eccb
--- a/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java
+++ b/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java
@@@ -35,7 -35,7 +35,8 @@@ import static org.apache.geode.distribu
  import static org.apache.geode.distributed.ConfigurationProperties.OFF_HEAP_MEMORY_SIZE;
  import static org.apache.geode.distributed.ConfigurationProperties.REMOTE_LOCATORS;
  import static org.apache.geode.distributed.ConfigurationProperties.START_LOCATOR;
 +import static org.assertj.core.api.Assertions.assertThat;
+ import static org.apache.geode.test.dunit.Host.getHost;
  import static org.junit.Assert.assertEquals;
  import static org.junit.Assert.assertFalse;
  import static org.junit.Assert.assertNotNull;

-- 
To stop receiving notification emails like this one, please contact
boglesby@apache.org.