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

[servicecomb-pack] branch SCB-1321 updated: SCB-1321 default use mem persistence for test cases

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

zhanglei pushed a commit to branch SCB-1321
in repository https://gitbox.apache.org/repos/asf/servicecomb-pack.git


The following commit(s) were added to refs/heads/SCB-1321 by this push:
     new b74d276  SCB-1321 default use mem persistence for test cases
b74d276 is described below

commit b74d276360730f88bf4eb048dd69d84e8b96e0c4
Author: Lei Zhang <zh...@apache.org>
AuthorDate: Wed Jul 3 13:37:58 2019 +0800

    SCB-1321 default use mem persistence for test cases
---
 .../java/org/apache/servicecomb/pack/alpha/fsm/SagaIntegrationTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/alpha/alpha-fsm/src/test/java/org/apache/servicecomb/pack/alpha/fsm/SagaIntegrationTest.java b/alpha/alpha-fsm/src/test/java/org/apache/servicecomb/pack/alpha/fsm/SagaIntegrationTest.java
index 7fbf843..b5b1f29 100644
--- a/alpha/alpha-fsm/src/test/java/org/apache/servicecomb/pack/alpha/fsm/SagaIntegrationTest.java
+++ b/alpha/alpha-fsm/src/test/java/org/apache/servicecomb/pack/alpha/fsm/SagaIntegrationTest.java
@@ -36,7 +36,7 @@ import org.springframework.test.context.junit4.SpringRunner;
 @SpringBootTest(classes = {SagaApplication.class},
     properties = {
         "alpha.model.actor.enabled=true",
-        "spring.profiles.active=akka-persistence-redis"
+        "spring.profiles.active=akka-persistence-mem"
     })
 public class SagaIntegrationTest {