Commit 99070d5e by Yiming Liu

Merge pull request #32 from nobodyiam/integration-fix

fix meta server url
parents 82f2e6d9 d8829a88
......@@ -9,27 +9,27 @@ public class MetaDomainConsts {
public static final String DEFAULT_PORT = "8080";
public static final String LOCAL = "http://localhost" + "/" + DEFAULT_PORT;
public static final String LOCAL = "http://localhost" + ":" + DEFAULT_PORT;
public static final String DEV =
"http://10.3.2.56" + "/" + DEFAULT_PORT;
"http://10.3.2.56" + ":" + DEFAULT_PORT;
public static final String FAT =
"http://ws.meta.apollo.fx.fat.nt.ctripcorp.com" + "/" + DEFAULT_PORT;
"http://ws.meta.apollo.fx.fat.nt.ctripcorp.com" + ":" + DEFAULT_PORT;
public static final String FWS =
"http://ws.meta.apollo.fx.fws.nt.ctripcorp.com" + "/" + DEFAULT_PORT;
"http://ws.meta.apollo.fx.fws.nt.ctripcorp.com" + ":" + DEFAULT_PORT;
public static final String UAT =
"http://ws.meta.apollo.fx.uat.nt.ctripcorp.com" + "/" + DEFAULT_PORT;
"http://ws.meta.apollo.fx.uat.nt.ctripcorp.com" + ":" + DEFAULT_PORT;
public static final String LPT =
"http://ws.meta.apollo.fx.lpt.nt.ctripcorp.com" + "/" + DEFAULT_PORT;
"http://ws.meta.apollo.fx.lpt.nt.ctripcorp.com" + ":" + DEFAULT_PORT;
public static final String TOOLS =
"http://ws.meta.apollo.fx.tools.ctripcorp.com" + "/" + DEFAULT_PORT;
"http://ws.meta.apollo.fx.tools.ctripcorp.com" + ":" + DEFAULT_PORT;
public static final String PRD = "http://ws.meta.apollo.fx.ctripcorp.com" + "/" + DEFAULT_PORT;
public static final String PRD = "http://ws.meta.apollo.fx.ctripcorp.com" + ":" + DEFAULT_PORT;
private static Map<Env, String> domains = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment