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 2018/08/28 07:13:31 UTC

[incubator-servicecomb-saga] branch master updated (68382f2 -> d91c8cf)

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/incubator-servicecomb-saga.git.


    from 68382f2  SCB-818 Implements the TccEventServie of grpc
     new dac393b  SCB-856 Try to fix the CI test error with slower box
     new d91c8cf  Updated the ROADMAP.md file

The 2 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:
 ROADMAP.md                                                        | 8 ++++----
 .../servicecomb/saga/alpha/tcc/server/AlphaTccServerTest.java     | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)


[incubator-servicecomb-saga] 02/02: Updated the ROADMAP.md file

Posted by ni...@apache.org.
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 d91c8cf47be101a3829b62ce4d0edc454658691b
Author: Willem Jiang <ji...@huawei.com>
AuthorDate: Tue Aug 28 15:13:12 2018 +0800

    Updated the ROADMAP.md file
---
 ROADMAP.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/ROADMAP.md b/ROADMAP.md
index d99ce72..42ecfe6 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -4,7 +4,7 @@
 - hard means it's a hard core which needs lots efforts
 
 ## Saga
-- [] [SCB-665](https://issues.apache.org/jira/browse/SCB-665) Support TCC (epic)
+- [*] [SCB-665](https://issues.apache.org/jira/browse/SCB-665) Support TCC (epic)
 - [] [SCB-16](https://issues.apache.org/jira/browse/SCB-16) Using MQ to increase the availability (epic)
 
 ### DEMO
@@ -12,12 +12,12 @@
 
 ### Test
 - [] [SCB-668](https://issues.apache.org/jira/browse/SCB-668) Using docker-compose file to start Services from docker plugin in the Accept test(new)
-- [] [SCB-306](https://issues.apache.org/jira/browse/SCB-306) Simulate different recover use cases 
+- [] [SCB-306](https://issues.apache.org/jira/browse/SCB-306) Simulate different recover use cases on the alpha side
 - [] [SCB-240](https://issues.apache.org/jira/browse/SCB-240) Performance impacts test (new)
 
 ### centric-saga
-- [] [SCB-692](https://issues.apache.org/jira/browse/SCB-692) Restore the old Saga implementation
-- [] [SCB-717](https://issues.apache.org/jira/browse/SCB-717) Support to extend the invocation
+- [*] [SCB-692](https://issues.apache.org/jira/browse/SCB-692) Restore the old Saga implementation
+- [*] [SCB-717](https://issues.apache.org/jira/browse/SCB-717) Support to extend the invocation
 - [] [SCB-734](https://issues.apache.org/jira/browse/SCB-734) Provide DSL support for building the Saga invocations (epic)
 
 ### Omega


[incubator-servicecomb-saga] 01/02: SCB-856 Try to fix the CI test error with slower box

Posted by ni...@apache.org.
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 dac393b514eaea1f7f503e4052f54a5623f32cb1
Author: Willem Jiang <ji...@huawei.com>
AuthorDate: Tue Aug 28 15:12:37 2018 +0800

    SCB-856 Try to fix the CI test error with slower box
---
 .../apache/servicecomb/saga/alpha/tcc/server/AlphaTccServerTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/alpha/alpha-server/src/test/java/org/apache/servicecomb/saga/alpha/tcc/server/AlphaTccServerTest.java b/alpha/alpha-server/src/test/java/org/apache/servicecomb/saga/alpha/tcc/server/AlphaTccServerTest.java
index a5030b1..2e6e1f2 100644
--- a/alpha/alpha-server/src/test/java/org/apache/servicecomb/saga/alpha/tcc/server/AlphaTccServerTest.java
+++ b/alpha/alpha-server/src/test/java/org/apache/servicecomb/saga/alpha/tcc/server/AlphaTccServerTest.java
@@ -120,7 +120,7 @@ public class AlphaTccServerTest {
         OmegaCallbacksRegistry.retrieve(serviceName, instanceId), is(instanceOf(GrpcOmegaTccCallback.class))
     );
     blockingStub.onDisconnected(serviceConfig);
-    assertThat(commandStreamObserver.isCompleted(), is(true));
+    await().atMost(2, SECONDS).until(()->commandStreamObserver.isCompleted());
   }
 
   private void awaitUntilConnected() {