You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2019/08/07 18:05:44 UTC

[geode] branch develop updated (f0db209 -> d9a9e30)

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

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


    from f0db209  GEODE-6883
     new f6f968f  Add ServerLauncherCacheProvider field to builder and launcher
     new 2127c58  ServerLauncher.start() waits for startup tasks to complete
     new 8acbc69  Set ControllableProcess factory in Builder instead of setting the ControllableProcess directly
     new 425a6cc  Rename and remove parameters for InternalResourceManager.runWhenStartupTasksComplete
     new 0624037  Fix failing test in ServerLauncherWithProviderRegressionTest
     new 59cdb76  Add acceptance test that the start server command waits for startup tasks to complete
     new 0cb6ee0  Add acceptance test that GFSH "status server" command returns the correct status before and after startup tasks complete
     new 5b1d940  WIP: Add acceptance test for MemberMXBean status
     new 7352aab  Complete acceptance test for MemberMXBean status
     new 5cb8117  Merge geode develop branch
     new 363a898  Trigger pre-checkin
     new 28645f1  Fix compile error caused by merge
     new 3c8e352  Fix stress test failure caused by leftover PID files
     new 05a72f6  Fix failing d-unit test by moving catch blocks back to ServerLauncher.start()
     new df25804  Merge geode develop branch
     new d9a9e30  Merge pull request #3878 from aaronlindsey/server-online-uses-startup-tasks

The 8193 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:
 .../geode/launchers/ServerStartupOnlineTest.java   | 207 ++++++++++++++++++++
 ...ultipleFailing.java => WaitForFileToExist.java} |  33 +++-
 .../LauncherMemberMXBeanIntegrationTest.java       |  10 -
 .../ServerLauncherWithProviderRegressionTest.java  |   5 +-
 .../ControllableProcessIntegrationTest.java        |  19 +-
 .../apache/geode/distributed/LocatorLauncher.java  |   6 +-
 .../apache/geode/distributed/ServerLauncher.java   |  96 +++++++--
 .../distributed/ServerLauncherCacheProvider.java   |   1 +
 .../cache/control/InternalResourceManager.java     |  25 ++-
 .../internal/process/ControllableProcess.java      | 217 +--------------------
 ...leProcess.java => FileControllableProcess.java} |  13 +-
 .../internal/process/FileProcessController.java    |   2 +-
 .../internal/process/MBeanProcessController.java   |   2 +-
 .../distributed/ServerLauncherBuilderTest.java     |  48 +++++
 .../geode/distributed/ServerLauncherTest.java      | 201 +++++++++++++------
 .../cache/control/InternalResourceManagerTest.java | 133 +++++--------
 .../internal/process/ControllableProcessTest.java  |   4 +-
 .../geode/test/junit/rules/gfsh/GfshRule.java      |   3 +-
 18 files changed, 613 insertions(+), 412 deletions(-)
 create mode 100644 geode-assembly/src/acceptanceTest/java/org/apache/geode/launchers/ServerStartupOnlineTest.java
 copy geode-assembly/src/acceptanceTest/java/org/apache/geode/launchers/startuptasks/{MultipleFailing.java => WaitForFileToExist.java} (63%)
 mode change 100755 => 100644 geode-core/src/main/java/org/apache/geode/internal/process/ControllableProcess.java
 copy geode-core/src/main/java/org/apache/geode/internal/process/{ControllableProcess.java => FileControllableProcess.java} (95%)