This is an automated email from the ASF dual-hosted git repository. ningjiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git
commit f375c613d3e6916287149a5b7066d8cdf89ed495 Author: Zhen Ju <[email protected]> AuthorDate: Wed Aug 22 16:14:41 2018 +0800 Add the ref to debugging in other demos' documents. --- saga-demo/conditional-transaction-demo/README.md | 3 +++ saga-demo/dependency-free-transaction-demo/README.md | 3 +++ saga-demo/saga-dubbo-demo/README.md | 8 ++++++-- saga-demo/saga-servicecomb-demo/README.md | 5 ++++- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/saga-demo/conditional-transaction-demo/README.md b/saga-demo/conditional-transaction-demo/README.md index 9ae1deb..505a666 100755 --- a/saga-demo/conditional-transaction-demo/README.md +++ b/saga-demo/conditional-transaction-demo/README.md @@ -172,3 +172,6 @@ So the 2<sup>nd</sup> request will trigger product replenishment from supplier. for simplicity. To see all events generated by Saga, visit `http://<docker.host.ip>:8083/events` with postman. + +## Debugging +Take the [spring-demo debugging](../saga-spring-demo#debugging) as a reference. diff --git a/saga-demo/dependency-free-transaction-demo/README.md b/saga-demo/dependency-free-transaction-demo/README.md index 611dfa5..4fb6e0f 100755 --- a/saga-demo/dependency-free-transaction-demo/README.md +++ b/saga-demo/dependency-free-transaction-demo/README.md @@ -166,3 +166,6 @@ Sending the request more than once will trigger compensation due to insufficient for simplicity. To see all events generated by Saga, visit `http://<docker.host.ip>:8083/events` with browser. + +## Debugging +Take the [spring-demo debugging](../saga-spring-demo#debugging) as a reference. diff --git a/saga-demo/saga-dubbo-demo/README.md b/saga-demo/saga-dubbo-demo/README.md index 098fd85..deadb4f 100644 --- a/saga-demo/saga-dubbo-demo/README.md +++ b/saga-demo/saga-dubbo-demo/README.md @@ -15,6 +15,10 @@ You will need: [alpha_server]: https://github.com/apache/incubator-servicecomb-saga/tree/master/alpha ## Running Demo -1.mvn clean install -DskipTests -Pdocker -2. ./saga-dubbo-demo.sh up +```bash +$ mvn clean install -DskipTests -Pdocker +$ ./saga-dubbo-demo.sh up +``` +## Debugging +Take the [spring-demo debugging](../saga-spring-demo#debugging) as a reference. diff --git a/saga-demo/saga-servicecomb-demo/README.md b/saga-demo/saga-servicecomb-demo/README.md index f9cd821..e08b416 100644 --- a/saga-demo/saga-servicecomb-demo/README.md +++ b/saga-demo/saga-servicecomb-demo/README.md @@ -58,4 +58,7 @@ Check the car booking status with ``` curl http://${host_address}:8082/bookings ``` -The second car booking will be marked with **cancel:true** \ No newline at end of file +The second car booking will be marked with **cancel:true** + +## Debugging +Take the [spring-demo debugging](../saga-spring-demo#debugging) as a reference.
