You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ni...@apache.org on 2019/02/19 14:03:45 UTC

[servicecomb-pack] branch master updated (0868348 -> 7eafcfb)

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

ningjiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-pack.git.


    from 0868348  [SCB-1159] Rxjs and TypeScript version compatibility issues
     new 41cc1b7  [SCB-1142] Add alpha-spring-boot-compatibility module
     new 88c4795  [SCB-1142] Copy a new acceptance-pack-cluster-spring-demo module from acceptance-pack-spring-demo
     new dfdfe71  [SCB-1142] Add node switch wait time for test case
     new c77c97e  [SCB-1142] Add an alphaMasterShutdown method to the class BookingController, it's used by the byteman trigger shutdown Alpah server master node
     new 87bef60  [SCB-1142] Add alpha_shutdown.btm to pack_success_senario.feature
     new cbac96a  [SCB-1142] Modify autoConfigure after class AlphaConfig
     new 7eafcfb  [SCB-1142] rebase master

The 968 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:
 .../pom.xml                                        | 77 ++++++++++++++----
 .../org/apache/servicecomb/pack/PackStepdefs.java  | 90 +++++++++++++++++++---
 .../org/apache/servicecomb/pack/RunCucumberIT.java |  0
 .../src/test/resources/alpha_shutdown.btm}         |  8 +-
 .../src/test/resources/booking_exception.btm       |  0
 .../src/test/resources/booking_timeout.btm         |  0
 .../src/test/resources/log4j2-test.xml             |  0
 .../resources/pack_compensation_scenario.feature   |  0
 .../pack_post_car_exception_scenario.feature       |  0
 .../test/resources/pack_success_scenario.feature   |  4 +-
 .../test/resources/pack_timeout_scenario.feature   |  0
 acceptance-tests/pom.xml                           |  1 +
 .../alpha/core/actuate/endpoint/AlphaStatus.java   | 15 ++++
 alpha/alpha-server/pom.xml                         |  9 +++
 .../server/cluster/master/ClusterLockService.java  |  3 +
 .../cluster/master/ClusterLockServiceTest.java     | 14 ++--
 .../alpha-spring-boot-1-starter}/pom.xml           | 78 +++++++++----------
 .../server/actuate/endpoint/ActuatorEndpoint.java  | 38 +++++++++
 .../server/actuate/endpoint/AlphaEndpoint.java     | 42 ++++++++++
 .../actuate/endpoint/mvc/ActuatorMvcEndpoint.java  | 48 ++++++++++++
 .../alpha-spring-boot-2-starter}/pom.xml           | 64 ++++++++-------
 .../server/actuate/endpoint/AlphaEndPoint.java     | 27 +++++++
 .../alpha-spring-boot-compatibility}/pom.xml       |  7 +-
 alpha/pom.xml                                      |  1 +
 .../pack/demo/booking/BookingController.java       | 45 +++++++++++
 25 files changed, 462 insertions(+), 109 deletions(-)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/pom.xml (77%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/java/org/apache/servicecomb/pack/PackStepdefs.java (73%)
 copy acceptance-tests/{acceptance-pack-tcc-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/java/org/apache/servicecomb/pack/RunCucumberIT.java (100%)
 copy acceptance-tests/{acceptance-pack-spring-demo/src/test/resources/booking_exception.btm => acceptance-pack-cluster-spring-demo/src/test/resources/alpha_shutdown.btm} (84%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/resources/booking_exception.btm (100%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/resources/booking_timeout.btm (100%)
 copy {omega/omega-transaction => acceptance-tests/acceptance-pack-cluster-spring-demo}/src/test/resources/log4j2-test.xml (100%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/resources/pack_compensation_scenario.feature (100%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/resources/pack_post_car_exception_scenario.feature (100%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/resources/pack_success_scenario.feature (93%)
 copy acceptance-tests/{acceptance-pack-spring-demo => acceptance-pack-cluster-spring-demo}/src/test/resources/pack_timeout_scenario.feature (100%)
 create mode 100644 alpha/alpha-core/src/main/java/org/apache/servicecomb/pack/alpha/core/actuate/endpoint/AlphaStatus.java
 copy {omega => alpha/alpha-spring-boot-compatibility/alpha-spring-boot-1-starter}/pom.xml (57%)
 create mode 100644 alpha/alpha-spring-boot-compatibility/alpha-spring-boot-1-starter/src/main/java/org/apache/servicecomb/pack/alpha/server/actuate/endpoint/ActuatorEndpoint.java
 create mode 100644 alpha/alpha-spring-boot-compatibility/alpha-spring-boot-1-starter/src/main/java/org/apache/servicecomb/pack/alpha/server/actuate/endpoint/AlphaEndpoint.java
 create mode 100644 alpha/alpha-spring-boot-compatibility/alpha-spring-boot-1-starter/src/main/java/org/apache/servicecomb/pack/alpha/server/actuate/endpoint/mvc/ActuatorMvcEndpoint.java
 copy {persistence/persistence-jpa => alpha/alpha-spring-boot-compatibility/alpha-spring-boot-2-starter}/pom.xml (62%)
 create mode 100644 alpha/alpha-spring-boot-compatibility/alpha-spring-boot-2-starter/src/main/java/org/apache/servicecomb/pack/alpha/server/actuate/endpoint/AlphaEndPoint.java
 copy {pack-contracts => alpha/alpha-spring-boot-compatibility}/pom.xml (86%)