You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ji...@apache.org on 2019/12/20 15:37:50 UTC

[geode] branch develop updated (8d399ab -> 1e7bba0)

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

jinmeiliao pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from 8d399ab  GEODE-7561: GW sender allow single dispatcher thread (#4441)
     add 1e7bba0  GEODE-7398 :show deployer and deploy time (#4509)

No new revisions were added by this update.

Summary of changes:
 .../rest/DeploymentManagementDUnitTest.java        |  34 +++-
 .../DeploymentManagementUpgradeTest.java           |  75 ++++++++
 .../codeAnalysis/sanctionedDataSerializables.txt   |   4 +-
 .../InternalConfigurationPersistenceService.java   | 207 +++++++++++++--------
 .../configuration/domain/Configuration.java        | 190 +++++++++----------
 .../messages/ConfigurationResponse.java            |   3 +-
 .../configuration/mutators/DeploymentManager.java  |  28 +--
 .../realizers/DeploymentRealizer.java              |  15 +-
 .../sanctioned-geode-management-serializables.txt  |   4 +-
 ...gurationPersistenceServiceDeployedJarTest.java} |  99 +++++++---
 ...nternalConfigurationPersistenceServiceTest.java |   5 -
 .../configuration/domain/ConfigurationTest.java    |  88 +++++++--
 .../mutators/DeploymentManagerTest.java            | 123 ++++++++++++
 .../geode/test/dunit/internal/ProcessManager.java  |   6 +-
 .../ExportClusterConfigurationCommandTest.java     |  16 +-
 .../geode/management/configuration/Deployment.java |  71 +++++++
 .../geode/management/runtime/DeploymentInfo.java   |  10 +-
 .../management/configuration/DeploymentTest.java   |  52 +++++-
 .../management/runtime/DeploymentInfoTest.java     |  54 ++++++
 19 files changed, 795 insertions(+), 289 deletions(-)
 create mode 100644 geode-assembly/src/upgradeTest/java/org/apache/geode/management/DeploymentManagementUpgradeTest.java
 rename geode-core/src/test/java/org/apache/geode/distributed/internal/{InternalConfigurationPersistenceServiceJunitTest.java => InternalConfigurationPersistenceServiceDeployedJarTest.java} (62%)
 create mode 100644 geode-core/src/test/java/org/apache/geode/management/internal/configuration/mutators/DeploymentManagerTest.java
 create mode 100644 geode-management/src/test/java/org/apache/geode/management/runtime/DeploymentInfoTest.java