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/11/27 16:29:01 UTC

[geode] branch develop updated (6bc6e59 -> 6ad41d3)

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 6bc6e59  GEODE-7489 DistributionArchUnitTest is running out of memory for some users (#4377)
     add 6ad41d3  Revert "GEODE-7436: Deploy jar using semantic versioning scheme (#4343)" (#4380)

No new revisions were added by this update.

Summary of changes:
 .../commands/DeployCommandRedeployDUnitTest.java   |   4 +-
 .../DeploySemanticVersionJarDUnitTest.java         | 213 ---------
 .../cli/commands/DeployWithGroupsDUnitTest.java    |   6 +-
 .../geode/internal/ClassPathLoaderDeployTest.java  |   4 +-
 .../internal/ClassPathLoaderIntegrationTest.java   |  59 +--
 .../geode/internal/ClassPathLoaderJUnitTest.java   |  44 +-
 .../geode/internal/DeployedJarJUnitTest.java       |  67 +++
 .../org/apache/geode/internal/DeployedJarTest.java |  76 ----
 .../geode/internal/JarDeployerDeadlockTest.java    |   8 +-
 .../apache/geode/internal/JarDeployerFileTest.java | 504 ---------------------
 .../geode/internal/JarDeployerIntegrationTest.java | 339 ++++++++------
 .../backup/IncrementalBackupIntegrationTest.java   |   8 +-
 .../InternalConfigurationPersistenceService.java   |  19 +-
 .../org/apache/geode/internal/ClassPathLoader.java |  10 +-
 .../internal/DeployJarChildFirstClassLoader.java   |  29 +-
 .../org/apache/geode/internal/DeployedJar.java     |  39 +-
 .../org/apache/geode/internal/JarDeployer.java     | 287 ++++++------
 .../internal/cache/ClusterConfigurationLoader.java |  45 +-
 .../internal/cli/commands/DeployCommand.java       |  12 +-
 .../internal/cli/functions/DeployFunction.java     |  18 +-
 .../cli/functions/ListDeployedFunction.java        |   2 +-
 .../internal/cli/functions/UndeployFunction.java   |   2 +-
 .../configuration/domain/Configuration.java        |  22 +-
 ...alConfigurationPersistenceServiceJunitTest.java | 156 -------
 ...nternalConfigurationPersistenceServiceTest.java |   5 -
 .../apache/geode/internal/ClassPathLoaderTest.java |  22 +-
 .../cache/ClusterConfigurationLoaderTest.java      |  50 --
 .../ExportClusterConfigurationCommandTest.java     |   4 +-
 .../configuration/domain/ConfigurationTest.java    |  38 +-
 29 files changed, 580 insertions(+), 1512 deletions(-)
 delete mode 100644 geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/DeploySemanticVersionJarDUnitTest.java
 create mode 100644 geode-core/src/integrationTest/java/org/apache/geode/internal/DeployedJarJUnitTest.java
 delete mode 100644 geode-core/src/integrationTest/java/org/apache/geode/internal/DeployedJarTest.java
 delete mode 100644 geode-core/src/integrationTest/java/org/apache/geode/internal/JarDeployerFileTest.java
 delete mode 100644 geode-core/src/test/java/org/apache/geode/distributed/internal/InternalConfigurationPersistenceServiceJunitTest.java
 delete mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/ClusterConfigurationLoaderTest.java