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/1.5.x-CDH5.7 Commit: 9d48273a468c60f8ac2ddf7c1b7696fe7a3b6ecb Parents: ae9ccf3 Author: shaofengshi <shaofeng...@apache.org> Authored: Fri Jul 22 18:13:48 2016 +0800 Committer: shaofengshi <shaofeng...@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);