You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by im...@apache.org on 2015/03/22 05:02:53 UTC

stratos git commit: Updating integration test to wait until stratos manager becomes active to make API calls

Repository: stratos
Updated Branches:
  refs/heads/master 5c24d9f64 -> cc4eb9ec7


Updating integration test to wait until stratos manager becomes active to make API calls


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/cc4eb9ec
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/cc4eb9ec
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/cc4eb9ec

Branch: refs/heads/master
Commit: cc4eb9ec7d3a9ca6eaeea807e55be3f0beb37fcf
Parents: 5c24d9f
Author: Imesh Gunaratne <im...@apache.org>
Authored: Sun Mar 22 09:32:41 2015 +0530
Committer: Imesh Gunaratne <im...@apache.org>
Committed: Sun Mar 22 09:32:41 2015 +0530

----------------------------------------------------------------------
 .../apache/stratos/integration/tests/StratosTestServerManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/cc4eb9ec/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
----------------------------------------------------------------------
diff --git a/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java b/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
index ec9afeb..674ac6f 100755
--- a/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
+++ b/products/stratos/modules/integration/src/test/java/org/apache/stratos/integration/tests/StratosTestServerManager.java
@@ -140,7 +140,7 @@ public class StratosTestServerManager extends TestServerManager {
 
     private boolean serverStarted(TestLogAppender testLogAppender) {
         for(String message : testLogAppender.getMessages()) {
-            if(message.contains("Topology initialized")) {
+            if(message.contains("StratosManager component became active")) {
                 return true;
             }
         }