You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2016/07/22 10:14:04 UTC

kylin git commit: minor, avoid port conflict

Repository: kylin
Updated Branches:
  refs/heads/v1.5.3-release-rc2 ae9ccf39a -> 9d48273a4


minor, avoid port conflict

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

Branch: refs/heads/v1.5.3-release-rc2
Commit: 9d48273a468c60f8ac2ddf7c1b7696fe7a3b6ecb
Parents: ae9ccf3
Author: shaofengshi <sh...@apache.org>
Authored: Fri Jul 22 18:13:48 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Fri Jul 22 18:13:48 2016 +0800

----------------------------------------------------------------------
 .../java/org/apache/kylin/rest/service/CacheServiceTest.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/9d48273a/server/src/test/java/org/apache/kylin/rest/service/CacheServiceTest.java
----------------------------------------------------------------------
diff --git a/server/src/test/java/org/apache/kylin/rest/service/CacheServiceTest.java b/server/src/test/java/org/apache/kylin/rest/service/CacheServiceTest.java
index d77b9ce..7620f8c 100644
--- a/server/src/test/java/org/apache/kylin/rest/service/CacheServiceTest.java
+++ b/server/src/test/java/org/apache/kylin/rest/service/CacheServiceTest.java
@@ -72,12 +72,12 @@ public class CacheServiceTest extends LocalFileMetadataTestCase {
     public static void beforeClass() throws Exception {
         staticCreateTestMetadata();
         configA = KylinConfig.getInstanceFromEnv();
-        configA.setProperty("kylin.rest.servers", "localhost:7070");
+        configA.setProperty("kylin.rest.servers", "localhost:7777");
         configB = KylinConfig.createKylinConfigFromInputStream(KylinConfig.getKylinPropertiesAsInputStream());
-        configB.setProperty("kylin.rest.servers", "localhost:7070");
+        configB.setProperty("kylin.rest.servers", "localhost:7777");
         configB.setMetadataUrl("../examples/test_metadata");
 
-        server = new Server(7070);
+        server = new Server(7777);
         ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
         context.setContextPath("/");
         server.setHandler(context);