You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by la...@apache.org on 2015/05/15 16:47:10 UTC

stratos git commit: Fix some logs in integration tests

Repository: stratos
Updated Branches:
  refs/heads/master 99c05656b -> ce66c475a


Fix some logs in integration tests


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

Branch: refs/heads/master
Commit: ce66c475afef5d817d88435253b8b18c5affbbc7
Parents: 99c0565
Author: Lahiru Sandaruwan <la...@apache.org>
Authored: Fri May 15 20:03:47 2015 +0530
Committer: Lahiru Sandaruwan <la...@apache.org>
Committed: Fri May 15 20:03:51 2015 +0530

----------------------------------------------------------------------
 .../stratos/integration/tests/StratosTestServerManager.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/ce66c475/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 92e6df1..4e7f404 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
@@ -40,7 +40,7 @@ import java.net.URL;
 import static org.testng.Assert.assertNotNull;
 
 /**
- * Prepare activemq, stratos server for tests, enables mock iaas, starts servers and stop them after the tests.
+ * Prepare activemq, Stratos server for tests, enables mock iaas, starts servers and stop them after the tests.
  */
 public class StratosTestServerManager extends TestServerManager {
 
@@ -85,7 +85,7 @@ public class StratosTestServerManager extends TestServerManager {
         }
 
         try {
-            log.info("Setting up stratos server...");
+            log.info("Setting up Stratos server...");
             long time3 = System.currentTimeMillis();
             String carbonZip = getCarbonZip();
             if (carbonZip == null) {
@@ -100,7 +100,7 @@ public class StratosTestServerManager extends TestServerManager {
                 this.copyArtifacts(carbonHome);
                 log.info("Stratos server setup completed");
 
-                log.info("Starting stratos server...");
+                log.info("Starting Stratos server...");
                 this.serverUtils.startServerUsingCarbonHome(carbonHome, carbonHome, "stratos", PORT_OFFSET, null);
                 FrameworkSettings.init();
 
@@ -114,7 +114,7 @@ public class StratosTestServerManager extends TestServerManager {
                 return carbonHome;
             }
         } catch (Exception e) {
-            throw new RuntimeException("Could not stratos server", e);
+            throw new RuntimeException("Could not start Stratos server", e);
         }
     }